﻿@charset "UTF-8";
@font-face {
  font-display: block;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/Themes/Theme/Webfonts/nunito-sans-v15-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: block;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 900;
  src: url("/Themes/Theme/Webfonts/nunito-sans-v15-latin-900.woff2") format("woff2");
}
@font-face {
  font-display: block;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  src: url("/Themes/Theme/Webfonts/nunito-v25-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: block;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 600;
  src: url("/Themes/Theme/Webfonts/nunito-v25-latin-600.woff2") format("woff2");
}
:root {
  --black: #000000;
  --green: #384E46;
  --green10: #384E461A;
  --green50: #384E4680;
  --green80: #384E46CC;
  --white: #FFFFFF;
  --white10: #FFFFFF19;
  --white40: #FFFFFF66;
  --white50: #FFFFFF80;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--white);
  line-height: 26px;
  font-family: "Nunito";
  font-size: 16px;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  margin: 0;
  padding: 26px 0 0 0;
  font-family: "Nunito Sans";
  text-transform: uppercase;
}
body h1, body .h1 {
  line-height: 48px;
  font-size: 46px;
  font-weight: 900;
  color: var(--green);
}
body h2, body .h2 {
  line-height: 42px;
  font-size: 40px;
  font-weight: 900;
  color: var(--green);
}
body h3, body .h3 {
  line-height: 36px;
  font-size: 34px;
  font-weight: 900;
  color: var(--black);
}
body h4, body .h4 {
  line-height: 30px;
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
}
body h5, body .h5 {
  line-height: 26px;
  font-size: 24px;
  font-weight: 900;
  color: var(--black);
}
body h6, body .h6 {
  line-height: 22px;
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
}
body p {
  margin: 0;
  padding: 26px 0 0 0;
  line-height: 26px;
  font-family: "Nunito";
  font-size: 16px;
  color: var(--black);
}
body p.h1, body p.h2, body p.h3, body p.h4, body p.h5, body p.h6 {
  font-family: "Nunito Sans";
  text-transform: uppercase;
  word-break: break-word;
}
body p a {
  color: var(--black);
  text-decoration: underline;
}
body p a:hover {
  text-decoration: none;
}
body p.button a {
  text-decoration: none;
  display: inline-block;
}
body p.button a span {
  background-color: var(--green);
  border: 2px solid var(--green);
  padding: 10px 20px;
  font-weight: 600;
  color: var(--white);
  display: block;
}
body p.button a:hover span {
  background-color: transparent;
  color: var(--green);
}
body p.button.alternative a span {
  background-color: var(--black);
  border-color: var(--black);
}
body p.button.alternative a:hover span {
  color: var(--black);
}
body p.button.white a span {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--black);
}
body p.button.white a:hover span {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}
body.is--locked {
  overflow: hidden;
}
body button {
  background-color: var(--green);
  border: 2px solid var(--green);
  padding: 10px 20px;
  font-weight: 600;
  color: var(--white);
  display: block;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  line-height: 26px;
  font-family: "Nunito";
  font-size: 16px;
  font-weight: normal;
}
body button:hover {
  background-color: transparent;
  color: var(--green);
}
body ul, body ol {
  margin: 26px 0 0 0;
  padding: 0;
}
body ul li, body ol li {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 28px;
  /*white-space: nowrap;*/
  position: relative;
}
body ul li::before, body ol li::before {
  top: 9px;
  left: 0px;
  width: 8px;
  height: 8px;
  background-image: url(/Themes/Theme/Images/list_item.svg);
  background-size: 8px 8px;
  content: "";
  position: absolute;
  display: block;
}
body input[type=text],
body input[type=number],
body input[type=email],
body input[type=search],
body input[type=date],
body input[type=datetime-local],
body input[type=datetime],
body textarea,
body select {
  line-height: 22px;
  background-color: #FFFFFF;
  outline: none;
  border: none;
  border-radius: 0;
  padding: 10px 0;
  text-indent: 24px;
}
body .wrapper {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 40px;
}
body header {
  padding: 18px 0 24px;
  background-color: var(--green);
  position: relative;
  z-index: 100;
}
body header ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: end;
}
body header ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
body header ul li::before {
  display: none;
  visibility: hidden;
}
body header ul li.logo a {
  display: block;
}
body header ul li.logo a object {
  height: 118px;
  vertical-align: top;
  pointer-events: none;
}
body header ul li.navigation {
  margin: 18px 0 0 auto;
}
body header ul li.navigation nav ul {
  margin: 0;
  padding: 0;
}
body header ul li.navigation nav ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
body header ul li.navigation nav ul li::before {
  display: none;
  visibility: hidden;
}
body header ul li.navigation nav ul li.has-children {
  position: relative;
}
body header ul li.navigation nav ul li.has-children > a span {
  padding-right: 46px;
  position: relative;
}
body header ul li.navigation nav ul li.has-children > a span::after {
  top: 12px;
  right: 20px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  content: "\f078";
  position: absolute;
}
body header ul li.navigation nav ul li.has-children > ul {
  top: 100%;
  left: 0;
  min-width: 100%;
  background-color: var(--white);
  position: absolute;
  display: none;
}
body header ul li.navigation nav ul li.has-children > ul li:first-of-type a span {
  padding-top: 12px;
}
body header ul li.navigation nav ul li.has-children > ul li:last-of-type a span {
  padding-bottom: 12px;
}
body header ul li.navigation nav ul li.has-children > ul li a {
  text-decoration: none;
  color: var(--black);
  display: block;
}
body header ul li.navigation nav ul li.has-children > ul li a:hover {
  text-decoration: underline;
}
body header ul li.navigation nav ul li.has-children > ul li a span {
  padding: 6px 20px;
  /*padding-left: 38px;*/
  white-space: nowrap;
  position: relative;
  /*
  &::before {
  	top: 21px;
  	left: 20px;
  	width: 8px;
  	height: 8px;
  	background-image: url(/Themes/Theme/Images/list_item.svg);
  	background-size: 8px 8px;
  	content: "";
  	position: absolute;
  	display: block;
  }
  */
}
body header ul li.navigation nav ul li.has-children:hover > ul {
  display: block;
}
body header ul li.navigation nav ul li.button a {
  text-decoration: none;
  display: inline-block;
}
body header ul li.navigation nav ul li.button a span {
  background-color: var(--black);
  border: 2px solid var(--black);
  padding: 10px 20px;
  font-weight: 600;
  color: var(--white);
  display: block;
}
body header ul li.navigation nav ul li.button a:hover {
  text-decoration: none;
}
body header ul li.navigation nav ul li.button a:hover span {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
body header ul li.navigation nav ul li a {
  text-decoration: none;
  color: var(--white);
  display: block;
}
body header ul li.navigation nav ul li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: var(--white40);
}
body header ul li.navigation nav ul li a span {
  padding: 12px 20px;
  display: block;
}
body header ul li.navigation nav.primary > ul > li > a span {
  font-size: 18px;
  font-weight: bold;
}
body header ul li.navigation nav.primary > ul > li.has-children > ul {
  z-index: 2;
}
body header ul li.navigation nav.secondary ul li.has-children > ul {
  z-index: 1;
}
body header ul li.navigation nav.secondary ul li a span {
  font-size: 16px;
}
body header ul li.mobile-navigation {
  display: none;
}
body main section {
  /*	Products
  *************************************************/
  /*	References
  *************************************************/
}
body main section.top {
  padding-top: 54px;
}
body main section.bottom {
  padding-bottom: 80px;
}
body main section#jumbotron {
  padding: 0;
  background-color: var(--green);
  color: var(--white);
  position: relative;
}
body main section#jumbotron .placeholder {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}
body main section#jumbotron .placeholder > .content {
  width: 41.6666666667%;
  padding: 56px 0 112px 0;
  z-index: 3;
}
body main section#jumbotron .placeholder > .content > .content-placeholder h1,
body main section#jumbotron .placeholder > .content > .content-placeholder p {
  color: var(--white);
}
body main section#jumbotron .placeholder > .content > .content-placeholder h1 a,
body main section#jumbotron .placeholder > .content > .content-placeholder p a {
  color: var(--white);
  text-decoration: underline;
}
body main section#jumbotron .placeholder > .content > .content-placeholder h1 a:hover,
body main section#jumbotron .placeholder > .content > .content-placeholder p a:hover {
  text-decoration: none;
}
body main section#jumbotron .placeholder > .content > .content-placeholder h1.button a,
body main section#jumbotron .placeholder > .content > .content-placeholder p.button a {
  text-decoration: none;
}
body main section#jumbotron .placeholder > .content > .content-placeholder h1.button a span,
body main section#jumbotron .placeholder > .content > .content-placeholder p.button a span {
  padding: 0;
  background-color: transparent;
  border: 0;
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: var(--white40);
}
body main section#jumbotron .placeholder > .content > .content-placeholder h1.button a:hover span,
body main section#jumbotron .placeholder > .content > .content-placeholder p.button a:hover span {
  text-decoration-color: var(--white);
}
body main section#jumbotron .placeholder > .content > .content-placeholder .breadcrumb {
  display: flex;
  margin: -12px 0 14px 0;
  flex-wrap: wrap;
}
body main section#jumbotron .placeholder > .content > .content-placeholder .breadcrumb li {
  padding: 0;
  position: relative;
}
body main section#jumbotron .placeholder > .content > .content-placeholder .breadcrumb li:before {
  display: none;
}
body main section#jumbotron .placeholder > .content > .content-placeholder .breadcrumb li:not(:last-child) {
  padding-right: 20px;
  margin-right: 15px;
}
body main section#jumbotron .placeholder > .content > .content-placeholder .breadcrumb li:not(:last-child):after {
  content: "/";
  position: absolute;
  display: inline-block;
  width: unset;
  height: unset;
  top: 0;
  background: none;
  right: 0;
  vertical-align: top;
}
body main section#jumbotron .placeholder > .content > .content-placeholder .breadcrumb li a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.125s ease-in-out;
}
body main section#jumbotron .placeholder > .content > .content-placeholder .breadcrumb li a:hover {
  opacity: 1;
}
body main section#jumbotron .placeholder .video {
  width: 66.6666666667%;
  margin: 0 0 -80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
body main section#jumbotron .placeholder .video.video-variant {
  margin: 0;
}
body main section#jumbotron .placeholder .video.video-variant video {
  width: 100%;
  height: auto;
}
body main section#jumbotron .placeholder .video.video-variant .placeholder {
  padding-top: 100%;
  position: relative;
}
body main section#jumbotron .placeholder .video::before {
  top: 0;
  left: 0;
  bottom: 0;
  width: 20%;
  background-color: var(--green50);
  position: absolute;
  z-index: 2;
  content: "";
}
body main section#jumbotron .placeholder .video::after {
  top: 0;
  left: 0;
  bottom: 0;
  width: 20%;
  background-color: var(--green80);
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 1;
  content: "";
}
body main section#jumbotron .placeholder .video .placeholder {
  width: 1000%;
  height: 100%;
  padding-top: 56.25%;
  background-color: var(--green);
  position: absolute;
}
body main section#jumbotron .placeholder .video .placeholder iframe {
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
body main section#jumbotron .placeholder .video p.button.show-video a span {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}
body main section#jumbotron .placeholder .video p.button.show-video:hover a span {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
body main section#jumbotron .placeholder .image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body main section#jumbotron .placeholder .image .placeholder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body main section#jumbotron .placeholder .image .placeholder img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
body main section#jumbotron.with-video {
  margin-bottom: 48px;
}
body main section#jumbotron.with-video::before {
  bottom: 0;
  left: 0;
  width: 220px;
  height: 220px;
  background-image: url("/Themes/Theme/Images/pattern_white.svg");
  content: "";
  position: absolute;
}
body main section#jumbotron.with-video .placeholder .content {
  width: 33.3333333333%;
}
body main section#jumbotron.with-video .placeholder .content .summary {
  padding-right: 180px;
}
body main section#jumbotron.with-image {
  margin-top: -72px;
}
body main section#jumbotron.with-image .placeholder {
  background-color: var(--green);
  position: relative;
  z-index: 10;
  bottom: -80px;
}
body main section#jumbotron.with-image .placeholder > .content {
  position: relative;
  z-index: 11;
}
body main section#jumbotron.with-image .placeholder > .content::before {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--green50);
  position: absolute;
  z-index: 2;
  content: "";
}
body main section#jumbotron.with-image .placeholder > .content::after {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--green80);
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 1;
  content: "";
}
body main section#jumbotron.with-image .placeholder > .content .content-placeholder {
  padding-right: 48px;
  padding-left: 48px;
  position: relative;
  z-index: 2;
}
body main section#jumbotron.with-image .placeholder .image::after {
  bottom: 0;
  right: 0;
  width: 220px;
  height: 220px;
  background-image: url("/Themes/Theme/Images/pattern_white.svg");
  transform: rotate(-90deg);
  content: "";
  position: absolute;
  z-index: 11;
}
body main section#jumbotron.product .placeholder > .content {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}
body main section#jumbotron.product .placeholder > .content .content-placeholder {
  padding-right: 48px;
  padding-bottom: 80px;
  padding-left: 48px;
}
body main section#jumbotron.product .placeholder > .content .content-placeholder .quality-marks {
  padding: 22px 0 0 0;
  display: flex;
  flex-direction: row;
}
body main section#jumbotron.product .placeholder > .content .content-placeholder .quality-marks .quality-mark {
  padding: 26px 0 0 0;
}
body main section#jumbotron.product .placeholder > .content .content-placeholder .quality-marks .quality-mark object {
  width: auto;
  height: 32px;
  display: block;
}
body main section#jumbotron.product .placeholder .contact-information {
  margin: auto 0 -84px 0;
  background-color: var(--black);
  position: relative;
  z-index: 2;
}
body main section#jumbotron.product .placeholder .contact-information .buttoncontainer {
  display: flex;
  gap: var(--row-gap);
  flex-wrap: wrap;
}
body main section#jumbotron.product .placeholder .contact-information p {
  color: var(--white);
}
body main section#jumbotron.product .placeholder .contact-information p.button {
  padding-top: 12px;
}
body main section#jumbotron.product .placeholder .contact-information p.button a span {
  background-color: transparent;
  border-color: var(--white);
}
body main section#jumbotron.product .placeholder .contact-information p.button a:hover span {
  background-color: var(--white);
  color: var(--black);
}
body main section#jumbotron.product + section.top {
  padding-top: 244px;
}
body main section#jumbotron.reference + section.top {
  padding-top: 240px;
}
body main section#jumbotron .h5 + h1,
body main section#jumbotron .h6 + h1 {
  padding: 0;
}
body main section#jumbotron + section.top {
  padding-top: 146px;
}
body main section#jumbotron.as-video-variant .placeholder > .content {
  width: 41.6666666667%;
}
body main section#jumbotron.as-video-variant .placeholder .video.video-variant {
  width: 100%;
}
body main section#jumbotron.as-video-variant .placeholder .video.video-variant::before, body main section#jumbotron.as-video-variant .placeholder .video.video-variant::after {
  display: none;
  visibility: hidden;
}
@media (min-width: 1181px) {
  body main section#jumbotron.as-video-variant .placeholder .video.video-variant {
    width: 58.3333333333%;
  }
}
body main section.full-width.bottom {
  padding-bottom: 48px;
}
body main section.full-width:last-of-type {
  padding-bottom: 0;
}
body main section.full-width > .wrapper {
  max-width: unset;
  padding: 0;
}
body main section.full-width .card .placeholder.position-above .content {
  max-width: 1464px;
  margin: 0 auto -72px auto;
  width: calc(100% - 96px);
}
body main section.align-items-center .wrapper .grid {
  align-items: center;
}
body main section.align-items-end .wrapper .grid {
  align-items: end;
}
body main section.overflow-hidden {
  overflow: hidden;
}
body main section:not(.full-width) .hero.without-images .background-image {
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  width: 50%;
}
body main section:not(.full-width) .hero.without-images .content {
  margin-top: 0;
}
body main section:not(.full-width) .hero.without-images .grid .column:first-child {
  width: calc(50% - var(--column-gap));
}
body main section:not(.full-width) .hero.without-images .grid .column:first-child .content {
  padding: 0 48px;
}
body main section.grey {
  margin: 32px 0 48px 0;
  background-color: var(--green10);
}
body main section.grey.top {
  padding-top: 80px;
}
body main section.grey.bottom {
  padding-bottom: 80px;
}
body main section .description {
  padding-left: 48px;
}
body main section .features {
  background-color: var(--green);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
body main section .features .content {
  flex-grow: 1;
}
body main section .features .content p, body main section .features .content ul, body main section .features .content li {
  color: var(--white);
}
body main section .features .content ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
body main section .features .content ul li {
  width: 50%;
  padding-left: 24px;
}
body main section .features .content ul li::before {
  top: 0;
  width: 14px;
  height: unset;
  font-family: "Font Awesome 6 Pro";
  content: "\f00c";
}
body main section .features figure {
  width: 200px;
  flex-shrink: 0;
}
body main section .features figure picture img {
  height: 100%;
  object-fit: cover;
}
body main section .usps {
  padding: 54px 0 80px 0;
  background-color: var(--green);
  position: relative;
}
body main section .usps .background-image {
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  position: absolute;
}
body main section .usps .background-image::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--green50);
  position: absolute;
  z-index: 2;
  content: "";
}
body main section .usps .background-image::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--green80);
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 1;
  content: "";
}
body main section .usps .background-image figure {
  margin: 0;
  width: 100%;
  height: 100%;
}
body main section .usps .background-image figure picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body main section .usps .wrapper {
  position: relative;
  z-index: 2;
}
body main section .usps .wrapper .usp {
  margin: 26px 0 0 0;
}
body main section .usps .wrapper .usp .icon {
  line-height: 48px;
  margin: 0 auto;
  font-size: 48px;
  color: var(--white);
  display: table;
}
body main section .usps .wrapper .usp .icon::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  content: "\f005";
}
body main section .usps .wrapper .usp .icon.icon-1::before {
  content: "\e123";
}
body main section .usps .wrapper .usp .icon.icon-2::before {
  content: "\e197";
}
body main section .usps .wrapper .usp .icon.icon-3::before {
  content: "\e0cc";
}
body main section .usps .wrapper .usp p {
  text-align: center;
  color: var(--white);
}
body main section .reference {
  margin: 0 0 0 80px;
  background-color: var(--green);
}
body main section .reference .content {
  margin-left: -176px;
  padding-left: 0;
  position: relative;
  z-index: 2;
}
body main section .reference .content * {
  color: var(--white);
}
body main section .reference h2 + p.sub_title {
  padding: 0;
  text-transform: uppercase;
}
body main section .reference figure {
  margin: 0 0 80px 0;
}
body main section .reference figure.reference {
  margin: -80px 0 80px -80px;
  position: relative;
}
body main section .reference figure.reference::before {
  top: 0;
  bottom: 0;
  right: 0;
  width: 256px;
  background-color: var(--green50);
  position: absolute;
  z-index: 2;
  content: "";
}
body main section .reference figure.reference::after {
  top: 0;
  bottom: 0;
  right: 0;
  width: 256px;
  background-color: var(--green80);
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 1;
  content: "";
}
body footer {
  margin-top: auto;
  background-color: var(--green);
}
body footer .footer-top {
  padding: 46px 0 72px 0;
}
body footer .footer-top .wrapper .grid {
  width: 100%;
  margin: 0;
}
body footer .footer-top .wrapper .grid .column {
  margin: 26px 0 0 72px;
  vertical-align: central;
  flex-wrap: wrap;
  flex-grow: 1;
  flex-shrink: 1;
}
body footer .footer-top .wrapper .grid .column .logo {
  margin: 26px 0 0 0;
}
body footer .footer-top .wrapper .grid .column .logo a {
  margin: 0 auto;
  display: table;
}
body footer .footer-top .wrapper .grid .column .logo a object {
  height: 128px;
  vertical-align: top;
  pointer-events: none;
}
body footer .footer-top .wrapper .grid .column a {
  text-decoration: none;
  color: var(--white);
}
body footer .footer-top .wrapper .grid .column a:hover {
  text-decoration: underline;
}
body footer .footer-top .wrapper .grid .column p {
  color: var(--white);
}
body footer .footer-top .wrapper .grid .column p.title {
  text-transform: uppercase;
}
body footer .footer-top .wrapper .grid .column p.payoff {
  text-align: center;
}
body footer .footer-top .wrapper .grid .column .predicate {
  margin-top: 26px;
}
body footer .footer-top .wrapper .grid .column .predicate img {
  max-width: 100%;
  height: auto;
  display: block;
}
body footer .footer-top .wrapper .grid .column nav ul li {
  padding: 0;
}
body footer .footer-top .wrapper .grid .column nav ul li::before {
  display: none;
  visibility: hidden;
}
body footer .footer-top .wrapper .grid .column .social ul {
  display: flex;
  flex-direction: row;
}
body footer .footer-top .wrapper .grid .column .social ul li {
  padding: 0;
}
body footer .footer-top .wrapper .grid .column .social ul li::before {
  display: none;
  visibility: hidden;
}
body footer .footer-top .wrapper .grid .column .social ul li a {
  display: block;
}
body footer .footer-top .wrapper .grid .column .social ul li a span {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  display: block;
}
body footer .footer-top .wrapper .grid .column .social ul li:hover {
  background-color: var(--white);
}
body footer .footer-top .wrapper .grid .column .social ul li:hover a span i {
  color: var(--green);
}
body footer .footer-top .wrapper .grid .column .buttons p.button a span {
  border-color: var(--white);
}
body footer .footer-top .wrapper .grid .column .buttons p.button a:hover {
  text-decoration: none;
}
body footer .footer-top .wrapper .grid .column .buttons p.button a:hover span {
  background-color: var(--white);
  color: var(--green);
}
body footer .footer-top .wrapper .grid .column .buttons p:first-child a span {
  border-color: var(--black);
  background-color: var(--black);
}
body footer .footer-top .wrapper .grid .column .buttons p:first-child a:hover span {
  background-color: var(--green);
  border-color: var(--white);
  color: var(--white);
}
body footer .footer-bottom {
  background-color: var(--white);
}
body footer .footer-bottom p {
  font-size: 14px;
  padding: 12px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--black);
}
body footer .footer-bottom p a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--black);
}
body footer .footer-bottom p a:hover {
  text-decoration: underline;
}
body footer .footer-bottom p span#copyright-line {
  margin-left: 20px;
}
body footer .footer-bottom p span#copyright-line a {
  margin-left: unset;
}
body .grid .column .product.detail .employee {
  padding-top: 0;
}
body .grid .column .product.detail .employee .background-image {
  left: unset;
  width: 100%;
  position: relative;
}
body .grid .column .product.detail .employee .background-image::after, body .grid .column .product.detail .employee .background-image::before {
  top: unset;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 54px;
  background-color: var(--green50);
  position: absolute;
  z-index: 2;
  content: "";
}
body .grid .column .product.detail .employee .wrapper {
  padding: 0;
}
body .grid .column .product.detail .employee .wrapper .grid {
  width: 100%;
  margin: 0;
  display: block;
}
body .grid .column .product.detail .employee .wrapper .grid .column {
  width: 100% !important;
  margin: 0;
  padding: 0 48px;
}
body .grid .column .product.detail .employee .wrapper .grid .column .content {
  padding: 0;
}
body figure {
  margin: 0;
  padding: 0;
}
body figure picture img {
  width: 100%;
  height: auto;
  display: block;
}
body figure.ratio_1_1 picture {
  padding-top: 100%;
}
body figure.ratio_4_3 picture {
  padding-top: 75%;
}
body figure.ratio_5_2 picture {
  padding-top: 40%;
}
body figure.ratio_5_1 picture {
  padding-top: 20%;
}
body figure.ratio_16_9 picture {
  padding-top: 56.25%;
}
body .card {
  height: calc(100% - 26px);
  margin: 26px 0 0 0;
  position: relative;
}
body .card.has-link > a {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 4;
}
body .card.has-link .placeholder {
  height: 100%;
}
body .card.has-link .placeholder figure::before {
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background-color: var(--green);
  line-height: 48px;
  font-family: "Font Awesome 6 Pro";
  text-align: center;
  color: var(--white);
  display: block;
  position: absolute;
  content: "\f178";
  z-index: 3;
}
body .card.has-link:hover .placeholder figure::before {
  background-color: var(--black);
}
body .card .placeholder {
  display: flex;
}
body .card .placeholder.position-right {
  flex-direction: row;
}
body .card .placeholder.position-right > figure {
  width: 66.6666666667%;
  position: relative;
}
body .card .placeholder.position-right > figure picture {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  padding-top: 0;
}
body .card .placeholder.position-right .content {
  width: 33.3333333333%;
  margin: 80px 0 80px -48px;
}
body .card .placeholder.position-right .content figure {
  margin: 26px 0 0 0;
}
body .card .placeholder.position-right .content figure picture {
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  position: relative;
  display: block;
}
body .card .placeholder.position-below {
  flex-direction: column;
}
body .card .placeholder.position-below figure picture {
  width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}
body .card .placeholder.position-below .content {
  margin: -48px 22px 0 22px;
}
body .card .placeholder.position-below .content ul li {
  white-space: normal;
}
body .card .placeholder.position-above {
  flex-direction: column;
}
body .card .placeholder.position-above .content {
  display: flex;
  margin: 0 80px -72px 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
  justify-content: space-between;
}
body .card .placeholder.position-above .content .left {
  width: 41.6666666667%;
}
body .card .placeholder.position-above .content .right {
  width: 50%;
}
body .card .placeholder.position-above .content figure picture {
  width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}
body .card .placeholder.position-above .content.green {
  background-color: var(--green);
  padding-top: 80px;
  padding-right: 48px;
  padding-left: 48px;
}
body .card .placeholder.position-above .content.green * {
  color: var(--white);
}
body .card .placeholder.position-above .content.green .button a span {
  border-color: var(--white);
}
body .card .placeholder.position-above .content.green .button a:hover span {
  background-color: var(--white);
  color: var(--green);
}
body .card .placeholder.position-above > figure picture {
  width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}
body .card .placeholder figure picture img {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
  position: absolute;
  z-index: 1;
}
body .card .placeholder .content {
  padding: 0 22px 26px 22px;
  background-color: var(--white);
  position: relative;
  z-index: 2;
}
body .card .placeholder .content .h5 + h3,
body .card .placeholder .content .h5 + p.h3 {
  padding: 0;
  color: var(--green);
}
body .card .placeholder .content h5 + p.sub_title,
body .card .placeholder .content p.h5 + p.sub_title {
  padding: 0;
  text-transform: uppercase;
}
body .card .placeholder .content h6 + p.sub_title,
body .card .placeholder .content p.h6 + p.sub_title {
  padding: 0;
  text-transform: uppercase;
}
body .hero {
  margin: 0 0 80px 0;
  padding: 54px 0 80px 0;
  background-color: var(--green);
  position: relative;
}
body .hero .background-image {
  top: 0;
  bottom: 0;
  left: 0;
  width: 74vw;
  position: absolute;
}
body .hero .background-image::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--green50);
  position: absolute;
  z-index: 2;
  content: "";
}
body .hero .background-image::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--green80);
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 1;
  content: "";
}
body .hero .background-image figure {
  margin: 0;
  width: 100%;
  height: 100%;
}
body .hero .background-image figure picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .hero.without-images {
  margin-bottom: 0;
}
body .hero.without-images .background-image {
  top: 80px;
  right: 0;
  bottom: 0;
  left: unset;
}
body .hero.without-images .background-image::before {
  width: 35%;
  right: unset;
}
body .hero.without-images .background-image::after {
  width: 35%;
  right: unset;
}
body .hero.without-images .content {
  margin-top: 80px;
}
body .hero .wrapper {
  position: relative;
  z-index: 2;
}
body .hero .wrapper .grid {
  align-items: flex-end;
}
body .hero .wrapper .grid .column:first-child {
  align-self: center;
}
body .hero.quote h2 {
  position: relative;
}
body .hero.quote h2::before {
  top: 26px;
  left: -20px;
  font-size: 126px;
  color: var(--white40);
  content: "“";
  position: absolute;
}
body .hero.quote h2::after {
  content: "”";
}
body .hero h2,
body .hero p {
  color: var(--white);
}
body .hero h2.h5 + h2,
body .hero p.h5 + h2 {
  padding: 0;
}
body .hero h2.h5 + h2::before, body .hero h2.h5 + h2::after,
body .hero p.h5 + h2::before,
body .hero p.h5 + h2::after {
  display: none;
  visibility: hidden;
}
body .hero h2.button a span,
body .hero p.button a span {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--green);
}
body .hero h2.button a:hover span,
body .hero p.button a:hover span {
  background-color: transparent;
  color: var(--white);
}
body .hero p.author-and-function {
  font-style: italic;
}
body .hero figure {
  margin: 26px 0 -160px 0;
}
body .employee.detail-view {
  margin: 0;
  padding: 54px 0 80px 0;
  background-color: var(--green);
  position: relative;
}
body .employee.detail-view .background-image {
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  width: 50%;
  position: absolute;
}
body .employee.detail-view .background-image::before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 35%;
  background-color: var(--green50);
  position: absolute;
  z-index: 2;
  content: "";
}
body .employee.detail-view .background-image::after {
  top: 0;
  bottom: 0;
  left: 0;
  width: 35%;
  background-color: var(--green80);
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 1;
  content: "";
}
body .employee.detail-view .background-image figure {
  margin: 0;
  width: 100%;
  height: 100%;
}
body .employee.detail-view .background-image figure picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .employee.detail-view .content {
  margin-top: 0;
}
body .employee.detail-view .wrapper {
  position: relative;
  z-index: 2;
}
body .employee.detail-view .wrapper .grid {
  align-items: flex-end;
}
body .employee.detail-view .wrapper .grid .column:first-child {
  width: calc(50% - var(--column-gap));
  align-self: center;
}
body .employee.detail-view .wrapper .grid .column:first-child .content {
  padding: 0 48px;
}
body .employee.detail-view p {
  color: var(--white);
}
body .employee.detail-view p.h5 {
  padding-top: 52px;
}
body .employee.detail-view p.h5 + p {
  padding-top: 0;
  text-transform: uppercase;
}
body .employee.detail-view p.phone::before {
  margin-right: 10px;
  font-family: "Font Awesome 6 Pro";
  content: "\f095";
}
body .employee.detail-view p.email {
  padding: 0;
}
body .employee.detail-view p.email::before {
  margin-right: 10px;
  font-family: "Font Awesome 6 Pro";
  content: "\f0e0";
}
body .employee.detail-view p a {
  color: var(--white);
  text-decoration: none;
}
body .employee.detail-view p a:hover {
  text-decoration: underline;
}
body .employee.detail-view figure {
  margin: 26px 0 -160px 0;
}
body .news.list .item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 80px;
}
body .news.list .item:not(:only-of-type):not(:last-of-type) {
  margin-bottom: 40px;
}
body .news.list .item .content h2 a {
  text-decoration: none;
  color: var(--green);
}
body .news.list .item .content h2 a:hover {
  text-decoration: underline;
}
body .news.list .item .image {
  width: 25%;
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  align-self: start;
}
body .news.list .item .image img {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  object-fit: cover;
}
body .news .detail {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 80px;
}
body .news .detail .content {
  width: 60%;
}
body .news .detail .images {
  width: 40%;
}
body .news .detail .images .gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 576px) {
  body .news.list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  body .news.list .item {
    height: 100%;
    flex-direction: column;
    gap: 0;
  }
  body .news.list .item:not(:only-of-type):not(:last-of-type) {
    margin-bottom: 0;
  }
  body .news.list .item .content {
    height: 100%;
    order: 2;
    display: flex;
    flex-direction: column;
  }
  body .news.list .item .content p.button {
    margin-top: auto;
  }
  body .news.list .item .image {
    width: 100%;
    order: 1;
  }
  body .news .detail {
    gap: 40px;
    display: block;
  }
  body .news .detail .content {
    width: 100%;
  }
  body .news .detail .images {
    width: 100%;
  }
  body .news .detail .images .gallery {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 576.02px) and (max-width: 992px) {
  body .news.list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  body .news.list .item {
    height: 100%;
    flex-direction: column;
    gap: 0;
  }
  body .news.list .item:not(:only-of-type):not(:last-of-type) {
    margin-bottom: 0;
  }
  body .news.list .item .content {
    height: 100%;
    order: 2;
    display: flex;
    flex-direction: column;
  }
  body .news.list .item .content p.button {
    margin-top: auto;
  }
  body .news.list .item .image {
    width: 100%;
    order: 1;
  }
  body .news .detail {
    gap: 40px;
    display: block;
  }
  body .news .detail .content {
    width: 100%;
  }
  body .news .detail .images {
    width: 100%;
  }
  body .news .detail .images .gallery {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}
body .filters {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}
body .filters .filter {
  position: relative;
}
body .filters .filter select {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 16px 32px 16px 16px;
  border: 2px solid var(--green50);
  text-indent: 0;
  appearance: none;
  -webkit-appearance: none;
  font-size: 16px;
  color: #000000;
}
@media (max-width: 767px) {
  body .filters .filter select {
    padding: 10px 26px 10px 10px;
  }
}
body .filters .filter:after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  color: var(--green);
  pointer-events: none;
}
body .filters p.reset {
  padding: 13px 0;
}
body .filters p.reset span {
  text-decoration: underline;
  cursor: pointer;
}
body .filters p.reset span:hover {
  text-decoration: none;
}
body #CNT1117 .mpFormLabel,
body #CNT1120 .mpFormLabel {
  margin: 22px 0 12px 0;
}
body #CNT1117 .mpFormLabel label,
body #CNT1120 .mpFormLabel label {
  left: unset;
  bottom: unset;
  padding: 0;
  font-size: unset;
  font-weight: 900;
  line-height: unset;
  transform: unset;
}
body .form .umbraco-forms-page, body .mpForm .umbraco-forms-page {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
}
body .form .form-group, body .form .mpFormTable, body .mpForm .form-group, body .mpForm .mpFormTable {
  position: relative;
  flex-basis: 100%;
}
body .form .form-group input[type=text], body .form .form-group input[type=number], body .form .form-group input[type=email], body .form .form-group input[type=search], body .form .form-group input[type=date], body .form .form-group input[type=datetime-local], body .form .form-group input[type=datetime], body .form .form-group textarea, body .form .form-group select, body .form .mpFormTable input[type=text], body .form .mpFormTable input[type=number], body .form .mpFormTable input[type=email], body .form .mpFormTable input[type=search], body .form .mpFormTable input[type=date], body .form .mpFormTable input[type=datetime-local], body .form .mpFormTable input[type=datetime], body .form .mpFormTable textarea, body .form .mpFormTable select, body .mpForm .form-group input[type=text], body .mpForm .form-group input[type=number], body .mpForm .form-group input[type=email], body .mpForm .form-group input[type=search], body .mpForm .form-group input[type=date], body .mpForm .form-group input[type=datetime-local], body .mpForm .form-group input[type=datetime], body .mpForm .form-group textarea, body .mpForm .form-group select, body .mpForm .mpFormTable input[type=text], body .mpForm .mpFormTable input[type=number], body .mpForm .mpFormTable input[type=email], body .mpForm .mpFormTable input[type=search], body .mpForm .mpFormTable input[type=date], body .mpForm .mpFormTable input[type=datetime-local], body .mpForm .mpFormTable input[type=datetime], body .mpForm .mpFormTable textarea, body .mpForm .mpFormTable select {
  line-height: 26px;
  font-family: "Nunito";
  font-size: 16px;
  color: var(--black);
}
body .form .form-group:not(.recaptcha), body .form .mpFormTable:not(.recaptcha), body .mpForm .form-group:not(.recaptcha), body .mpForm .mpFormTable:not(.recaptcha) {
  margin-bottom: 16px;
}
body .form .form-group .submitCell, body .form .mpFormTable .submitCell, body .mpForm .form-group .submitCell, body .mpForm .mpFormTable .submitCell {
  margin-top: 22px;
}
body .form .form-group input[type=text], body .form .form-group input[type=number], body .form .form-group input[type=email], body .form .form-group input[type=search], body .form .form-group input[type=date], body .form .form-group input[type=datetime-local], body .form .form-group input[type=datetime], body .form .form-group textarea, body .form .form-group select, body .form .mpFormTable input[type=text], body .form .mpFormTable input[type=number], body .form .mpFormTable input[type=email], body .form .mpFormTable input[type=search], body .form .mpFormTable input[type=date], body .form .mpFormTable input[type=datetime-local], body .form .mpFormTable input[type=datetime], body .form .mpFormTable textarea, body .form .mpFormTable select, body .mpForm .form-group input[type=text], body .mpForm .form-group input[type=number], body .mpForm .form-group input[type=email], body .mpForm .form-group input[type=search], body .mpForm .form-group input[type=date], body .mpForm .form-group input[type=datetime-local], body .mpForm .form-group input[type=datetime], body .mpForm .form-group textarea, body .mpForm .form-group select, body .mpForm .mpFormTable input[type=text], body .mpForm .mpFormTable input[type=number], body .mpForm .mpFormTable input[type=email], body .mpForm .mpFormTable input[type=search], body .mpForm .mpFormTable input[type=date], body .mpForm .mpFormTable input[type=datetime-local], body .mpForm .mpFormTable input[type=datetime], body .mpForm .mpFormTable textarea, body .mpForm .mpFormTable select {
  width: 100%;
  max-width: 100%;
  padding: 16px 0;
  border: 2px solid var(--green50);
}
body .form .form-group input[type=text]::placeholder, body .form .form-group input[type=number]::placeholder, body .form .form-group input[type=email]::placeholder, body .form .form-group input[type=search]::placeholder, body .form .form-group input[type=date]::placeholder, body .form .form-group input[type=datetime-local]::placeholder, body .form .form-group input[type=datetime]::placeholder, body .form .form-group textarea::placeholder, body .form .form-group select::placeholder, body .form .mpFormTable input[type=text]::placeholder, body .form .mpFormTable input[type=number]::placeholder, body .form .mpFormTable input[type=email]::placeholder, body .form .mpFormTable input[type=search]::placeholder, body .form .mpFormTable input[type=date]::placeholder, body .form .mpFormTable input[type=datetime-local]::placeholder, body .form .mpFormTable input[type=datetime]::placeholder, body .form .mpFormTable textarea::placeholder, body .form .mpFormTable select::placeholder, body .mpForm .form-group input[type=text]::placeholder, body .mpForm .form-group input[type=number]::placeholder, body .mpForm .form-group input[type=email]::placeholder, body .mpForm .form-group input[type=search]::placeholder, body .mpForm .form-group input[type=date]::placeholder, body .mpForm .form-group input[type=datetime-local]::placeholder, body .mpForm .form-group input[type=datetime]::placeholder, body .mpForm .form-group textarea::placeholder, body .mpForm .form-group select::placeholder, body .mpForm .mpFormTable input[type=text]::placeholder, body .mpForm .mpFormTable input[type=number]::placeholder, body .mpForm .mpFormTable input[type=email]::placeholder, body .mpForm .mpFormTable input[type=search]::placeholder, body .mpForm .mpFormTable input[type=date]::placeholder, body .mpForm .mpFormTable input[type=datetime-local]::placeholder, body .mpForm .mpFormTable input[type=datetime]::placeholder, body .mpForm .mpFormTable textarea::placeholder, body .mpForm .mpFormTable select::placeholder {
  opacity: 0;
}
body .form .form-group input[type=text] + label, body .form .form-group input[type=number] + label, body .form .form-group input[type=email] + label, body .form .form-group input[type=search] + label, body .form .form-group input[type=date] + label, body .form .form-group input[type=datetime-local] + label, body .form .form-group input[type=datetime] + label, body .form .form-group textarea + label, body .form .form-group select + label, body .form .mpFormTable input[type=text] + label, body .form .mpFormTable input[type=number] + label, body .form .mpFormTable input[type=email] + label, body .form .mpFormTable input[type=search] + label, body .form .mpFormTable input[type=date] + label, body .form .mpFormTable input[type=datetime-local] + label, body .form .mpFormTable input[type=datetime] + label, body .form .mpFormTable textarea + label, body .form .mpFormTable select + label, body .mpForm .form-group input[type=text] + label, body .mpForm .form-group input[type=number] + label, body .mpForm .form-group input[type=email] + label, body .mpForm .form-group input[type=search] + label, body .mpForm .form-group input[type=date] + label, body .mpForm .form-group input[type=datetime-local] + label, body .mpForm .form-group input[type=datetime] + label, body .mpForm .form-group textarea + label, body .mpForm .form-group select + label, body .mpForm .mpFormTable input[type=text] + label, body .mpForm .mpFormTable input[type=number] + label, body .mpForm .mpFormTable input[type=email] + label, body .mpForm .mpFormTable input[type=search] + label, body .mpForm .mpFormTable input[type=date] + label, body .mpForm .mpFormTable input[type=datetime-local] + label, body .mpForm .mpFormTable input[type=datetime] + label, body .mpForm .mpFormTable textarea + label, body .mpForm .mpFormTable select + label {
  position: absolute;
  top: 16px;
  left: 21px;
  font-size: 16px;
  pointer-events: none;
  transition: all 150ms ease-in-out;
  padding: 0 5px;
}
body .form .form-group input[type=text]:not(:placeholder-shown)::placeholder, body .form .form-group input[type=text]:focus::placeholder, body .form .form-group input[type=number]:not(:placeholder-shown)::placeholder, body .form .form-group input[type=number]:focus::placeholder, body .form .form-group input[type=email]:not(:placeholder-shown)::placeholder, body .form .form-group input[type=email]:focus::placeholder, body .form .form-group input[type=search]:not(:placeholder-shown)::placeholder, body .form .form-group input[type=search]:focus::placeholder, body .form .form-group input[type=date]:not(:placeholder-shown)::placeholder, body .form .form-group input[type=date]:focus::placeholder, body .form .form-group input[type=datetime-local]:not(:placeholder-shown)::placeholder, body .form .form-group input[type=datetime-local]:focus::placeholder, body .form .form-group input[type=datetime]:not(:placeholder-shown)::placeholder, body .form .form-group input[type=datetime]:focus::placeholder, body .form .form-group textarea:not(:placeholder-shown)::placeholder, body .form .form-group textarea:focus::placeholder, body .form .form-group select:not(:placeholder-shown)::placeholder, body .form .form-group select:focus::placeholder, body .form .mpFormTable input[type=text]:not(:placeholder-shown)::placeholder, body .form .mpFormTable input[type=text]:focus::placeholder, body .form .mpFormTable input[type=number]:not(:placeholder-shown)::placeholder, body .form .mpFormTable input[type=number]:focus::placeholder, body .form .mpFormTable input[type=email]:not(:placeholder-shown)::placeholder, body .form .mpFormTable input[type=email]:focus::placeholder, body .form .mpFormTable input[type=search]:not(:placeholder-shown)::placeholder, body .form .mpFormTable input[type=search]:focus::placeholder, body .form .mpFormTable input[type=date]:not(:placeholder-shown)::placeholder, body .form .mpFormTable input[type=date]:focus::placeholder, body .form .mpFormTable input[type=datetime-local]:not(:placeholder-shown)::placeholder, body .form .mpFormTable input[type=datetime-local]:focus::placeholder, body .form .mpFormTable input[type=datetime]:not(:placeholder-shown)::placeholder, body .form .mpFormTable input[type=datetime]:focus::placeholder, body .form .mpFormTable textarea:not(:placeholder-shown)::placeholder, body .form .mpFormTable textarea:focus::placeholder, body .form .mpFormTable select:not(:placeholder-shown)::placeholder, body .form .mpFormTable select:focus::placeholder, body .mpForm .form-group input[type=text]:not(:placeholder-shown)::placeholder, body .mpForm .form-group input[type=text]:focus::placeholder, body .mpForm .form-group input[type=number]:not(:placeholder-shown)::placeholder, body .mpForm .form-group input[type=number]:focus::placeholder, body .mpForm .form-group input[type=email]:not(:placeholder-shown)::placeholder, body .mpForm .form-group input[type=email]:focus::placeholder, body .mpForm .form-group input[type=search]:not(:placeholder-shown)::placeholder, body .mpForm .form-group input[type=search]:focus::placeholder, body .mpForm .form-group input[type=date]:not(:placeholder-shown)::placeholder, body .mpForm .form-group input[type=date]:focus::placeholder, body .mpForm .form-group input[type=datetime-local]:not(:placeholder-shown)::placeholder, body .mpForm .form-group input[type=datetime-local]:focus::placeholder, body .mpForm .form-group input[type=datetime]:not(:placeholder-shown)::placeholder, body .mpForm .form-group input[type=datetime]:focus::placeholder, body .mpForm .form-group textarea:not(:placeholder-shown)::placeholder, body .mpForm .form-group textarea:focus::placeholder, body .mpForm .form-group select:not(:placeholder-shown)::placeholder, body .mpForm .form-group select:focus::placeholder, body .mpForm .mpFormTable input[type=text]:not(:placeholder-shown)::placeholder, body .mpForm .mpFormTable input[type=text]:focus::placeholder, body .mpForm .mpFormTable input[type=number]:not(:placeholder-shown)::placeholder, body .mpForm .mpFormTable input[type=number]:focus::placeholder, body .mpForm .mpFormTable input[type=email]:not(:placeholder-shown)::placeholder, body .mpForm .mpFormTable input[type=email]:focus::placeholder, body .mpForm .mpFormTable input[type=search]:not(:placeholder-shown)::placeholder, body .mpForm .mpFormTable input[type=search]:focus::placeholder, body .mpForm .mpFormTable input[type=date]:not(:placeholder-shown)::placeholder, body .mpForm .mpFormTable input[type=date]:focus::placeholder, body .mpForm .mpFormTable input[type=datetime-local]:not(:placeholder-shown)::placeholder, body .mpForm .mpFormTable input[type=datetime-local]:focus::placeholder, body .mpForm .mpFormTable input[type=datetime]:not(:placeholder-shown)::placeholder, body .mpForm .mpFormTable input[type=datetime]:focus::placeholder, body .mpForm .mpFormTable textarea:not(:placeholder-shown)::placeholder, body .mpForm .mpFormTable textarea:focus::placeholder, body .mpForm .mpFormTable select:not(:placeholder-shown)::placeholder, body .mpForm .mpFormTable select:focus::placeholder {
  opacity: 0;
}
body .form .form-group input[type=text]:not(:placeholder-shown) + label, body .form .form-group input[type=text]:focus + label, body .form .form-group input[type=number]:not(:placeholder-shown) + label, body .form .form-group input[type=number]:focus + label, body .form .form-group input[type=email]:not(:placeholder-shown) + label, body .form .form-group input[type=email]:focus + label, body .form .form-group input[type=search]:not(:placeholder-shown) + label, body .form .form-group input[type=search]:focus + label, body .form .form-group input[type=date]:not(:placeholder-shown) + label, body .form .form-group input[type=date]:focus + label, body .form .form-group input[type=datetime-local]:not(:placeholder-shown) + label, body .form .form-group input[type=datetime-local]:focus + label, body .form .form-group input[type=datetime]:not(:placeholder-shown) + label, body .form .form-group input[type=datetime]:focus + label, body .form .form-group textarea:not(:placeholder-shown) + label, body .form .form-group textarea:focus + label, body .form .form-group select:not(:placeholder-shown) + label, body .form .form-group select:focus + label, body .form .mpFormTable input[type=text]:not(:placeholder-shown) + label, body .form .mpFormTable input[type=text]:focus + label, body .form .mpFormTable input[type=number]:not(:placeholder-shown) + label, body .form .mpFormTable input[type=number]:focus + label, body .form .mpFormTable input[type=email]:not(:placeholder-shown) + label, body .form .mpFormTable input[type=email]:focus + label, body .form .mpFormTable input[type=search]:not(:placeholder-shown) + label, body .form .mpFormTable input[type=search]:focus + label, body .form .mpFormTable input[type=date]:not(:placeholder-shown) + label, body .form .mpFormTable input[type=date]:focus + label, body .form .mpFormTable input[type=datetime-local]:not(:placeholder-shown) + label, body .form .mpFormTable input[type=datetime-local]:focus + label, body .form .mpFormTable input[type=datetime]:not(:placeholder-shown) + label, body .form .mpFormTable input[type=datetime]:focus + label, body .form .mpFormTable textarea:not(:placeholder-shown) + label, body .form .mpFormTable textarea:focus + label, body .form .mpFormTable select:not(:placeholder-shown) + label, body .form .mpFormTable select:focus + label, body .mpForm .form-group input[type=text]:not(:placeholder-shown) + label, body .mpForm .form-group input[type=text]:focus + label, body .mpForm .form-group input[type=number]:not(:placeholder-shown) + label, body .mpForm .form-group input[type=number]:focus + label, body .mpForm .form-group input[type=email]:not(:placeholder-shown) + label, body .mpForm .form-group input[type=email]:focus + label, body .mpForm .form-group input[type=search]:not(:placeholder-shown) + label, body .mpForm .form-group input[type=search]:focus + label, body .mpForm .form-group input[type=date]:not(:placeholder-shown) + label, body .mpForm .form-group input[type=date]:focus + label, body .mpForm .form-group input[type=datetime-local]:not(:placeholder-shown) + label, body .mpForm .form-group input[type=datetime-local]:focus + label, body .mpForm .form-group input[type=datetime]:not(:placeholder-shown) + label, body .mpForm .form-group input[type=datetime]:focus + label, body .mpForm .form-group textarea:not(:placeholder-shown) + label, body .mpForm .form-group textarea:focus + label, body .mpForm .form-group select:not(:placeholder-shown) + label, body .mpForm .form-group select:focus + label, body .mpForm .mpFormTable input[type=text]:not(:placeholder-shown) + label, body .mpForm .mpFormTable input[type=text]:focus + label, body .mpForm .mpFormTable input[type=number]:not(:placeholder-shown) + label, body .mpForm .mpFormTable input[type=number]:focus + label, body .mpForm .mpFormTable input[type=email]:not(:placeholder-shown) + label, body .mpForm .mpFormTable input[type=email]:focus + label, body .mpForm .mpFormTable input[type=search]:not(:placeholder-shown) + label, body .mpForm .mpFormTable input[type=search]:focus + label, body .mpForm .mpFormTable input[type=date]:not(:placeholder-shown) + label, body .mpForm .mpFormTable input[type=date]:focus + label, body .mpForm .mpFormTable input[type=datetime-local]:not(:placeholder-shown) + label, body .mpForm .mpFormTable input[type=datetime-local]:focus + label, body .mpForm .mpFormTable input[type=datetime]:not(:placeholder-shown) + label, body .mpForm .mpFormTable input[type=datetime]:focus + label, body .mpForm .mpFormTable textarea:not(:placeholder-shown) + label, body .mpForm .mpFormTable textarea:focus + label, body .mpForm .mpFormTable select:not(:placeholder-shown) + label, body .mpForm .mpFormTable select:focus + label {
  transform: translate(0, -20px);
  font-size: 12px;
  line-height: 12px;
  background-color: var(--green);
  border-radius: 0;
  padding: 3px 8px;
  color: var(--white);
}
body .form .form-group input[type=text]:focus, body .form .form-group input[type=number]:focus, body .form .form-group input[type=email]:focus, body .form .form-group input[type=search]:focus, body .form .form-group input[type=date]:focus, body .form .form-group input[type=datetime-local]:focus, body .form .form-group input[type=datetime]:focus, body .form .form-group textarea:focus, body .form .form-group select:focus, body .form .mpFormTable input[type=text]:focus, body .form .mpFormTable input[type=number]:focus, body .form .mpFormTable input[type=email]:focus, body .form .mpFormTable input[type=search]:focus, body .form .mpFormTable input[type=date]:focus, body .form .mpFormTable input[type=datetime-local]:focus, body .form .mpFormTable input[type=datetime]:focus, body .form .mpFormTable textarea:focus, body .form .mpFormTable select:focus, body .mpForm .form-group input[type=text]:focus, body .mpForm .form-group input[type=number]:focus, body .mpForm .form-group input[type=email]:focus, body .mpForm .form-group input[type=search]:focus, body .mpForm .form-group input[type=date]:focus, body .mpForm .form-group input[type=datetime-local]:focus, body .mpForm .form-group input[type=datetime]:focus, body .mpForm .form-group textarea:focus, body .mpForm .form-group select:focus, body .mpForm .mpFormTable input[type=text]:focus, body .mpForm .mpFormTable input[type=number]:focus, body .mpForm .mpFormTable input[type=email]:focus, body .mpForm .mpFormTable input[type=search]:focus, body .mpForm .mpFormTable input[type=date]:focus, body .mpForm .mpFormTable input[type=datetime-local]:focus, body .mpForm .mpFormTable input[type=datetime]:focus, body .mpForm .mpFormTable textarea:focus, body .mpForm .mpFormTable select:focus {
  border-color: var(--green80);
}
body .form .form-group textarea, body .form .mpFormTable textarea, body .mpForm .form-group textarea, body .mpForm .mpFormTable textarea {
  line-height: 26px;
  font-family: "Nunito";
  font-size: 16px;
  resize: vertical;
  text-indent: 0;
  padding-left: 24px;
  width: 100%;
  max-width: 100%;
}
body .form .form-group select, body .form .mpFormTable select, body .mpForm .form-group select, body .mpForm .mpFormTable select {
  width: 100%;
}
body .form .form-group .mpRadioButtonTable label,
body .form .form-group .checkbox-wrapper label,
body .form .form-group .radio-wrapper label, body .form .mpFormTable .mpRadioButtonTable label,
body .form .mpFormTable .checkbox-wrapper label,
body .form .mpFormTable .radio-wrapper label, body .mpForm .form-group .mpRadioButtonTable label,
body .mpForm .form-group .checkbox-wrapper label,
body .mpForm .form-group .radio-wrapper label, body .mpForm .mpFormTable .mpRadioButtonTable label,
body .mpForm .mpFormTable .checkbox-wrapper label,
body .mpForm .mpFormTable .radio-wrapper label {
  padding-left: 32px;
  position: relative;
  cursor: pointer;
  line-height: 24px;
  display: inline-block;
  vertical-align: top;
}
body .form .form-group .mpRadioButtonTable label:before,
body .form .form-group .checkbox-wrapper label:before,
body .form .form-group .radio-wrapper label:before, body .form .mpFormTable .mpRadioButtonTable label:before,
body .form .mpFormTable .checkbox-wrapper label:before,
body .form .mpFormTable .radio-wrapper label:before, body .mpForm .form-group .mpRadioButtonTable label:before,
body .mpForm .form-group .checkbox-wrapper label:before,
body .mpForm .form-group .radio-wrapper label:before, body .mpForm .mpFormTable .mpRadioButtonTable label:before,
body .mpForm .mpFormTable .checkbox-wrapper label:before,
body .mpForm .mpFormTable .radio-wrapper label:before {
  content: "";
  width: 22px;
  height: 22px;
  background-color: var(--green50);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0;
  border: 1px solid transparent;
}
body .form .form-group .mpRadioButtonTable label a,
body .form .form-group .checkbox-wrapper label a,
body .form .form-group .radio-wrapper label a, body .form .mpFormTable .mpRadioButtonTable label a,
body .form .mpFormTable .checkbox-wrapper label a,
body .form .mpFormTable .radio-wrapper label a, body .mpForm .form-group .mpRadioButtonTable label a,
body .mpForm .form-group .checkbox-wrapper label a,
body .mpForm .form-group .radio-wrapper label a, body .mpForm .mpFormTable .mpRadioButtonTable label a,
body .mpForm .mpFormTable .checkbox-wrapper label a,
body .mpForm .mpFormTable .radio-wrapper label a {
  text-decoration: underline;
  color: var(--black);
}
body .form .form-group .mpRadioButtonTable label a:hover,
body .form .form-group .checkbox-wrapper label a:hover,
body .form .form-group .radio-wrapper label a:hover, body .form .mpFormTable .mpRadioButtonTable label a:hover,
body .form .mpFormTable .checkbox-wrapper label a:hover,
body .form .mpFormTable .radio-wrapper label a:hover, body .mpForm .form-group .mpRadioButtonTable label a:hover,
body .mpForm .form-group .checkbox-wrapper label a:hover,
body .mpForm .form-group .radio-wrapper label a:hover, body .mpForm .mpFormTable .mpRadioButtonTable label a:hover,
body .mpForm .mpFormTable .checkbox-wrapper label a:hover,
body .mpForm .mpFormTable .radio-wrapper label a:hover {
  text-decoration: none;
}
body .form .form-group .mpRadioButtonTable input[type=radio], body .form .form-group .mpRadioButtonTable input[type=checkbox],
body .form .form-group .checkbox-wrapper input[type=radio],
body .form .form-group .checkbox-wrapper input[type=checkbox],
body .form .form-group .radio-wrapper input[type=radio],
body .form .form-group .radio-wrapper input[type=checkbox], body .form .mpFormTable .mpRadioButtonTable input[type=radio], body .form .mpFormTable .mpRadioButtonTable input[type=checkbox],
body .form .mpFormTable .checkbox-wrapper input[type=radio],
body .form .mpFormTable .checkbox-wrapper input[type=checkbox],
body .form .mpFormTable .radio-wrapper input[type=radio],
body .form .mpFormTable .radio-wrapper input[type=checkbox], body .mpForm .form-group .mpRadioButtonTable input[type=radio], body .mpForm .form-group .mpRadioButtonTable input[type=checkbox],
body .mpForm .form-group .checkbox-wrapper input[type=radio],
body .mpForm .form-group .checkbox-wrapper input[type=checkbox],
body .mpForm .form-group .radio-wrapper input[type=radio],
body .mpForm .form-group .radio-wrapper input[type=checkbox], body .mpForm .mpFormTable .mpRadioButtonTable input[type=radio], body .mpForm .mpFormTable .mpRadioButtonTable input[type=checkbox],
body .mpForm .mpFormTable .checkbox-wrapper input[type=radio],
body .mpForm .mpFormTable .checkbox-wrapper input[type=checkbox],
body .mpForm .mpFormTable .radio-wrapper input[type=radio],
body .mpForm .mpFormTable .radio-wrapper input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
body .form .form-group .mpRadioButtonTable input:checked + label:after,
body .form .form-group .checkbox-wrapper input:checked + label:after,
body .form .form-group .radio-wrapper input:checked + label:after, body .form .mpFormTable .mpRadioButtonTable input:checked + label:after,
body .form .mpFormTable .checkbox-wrapper input:checked + label:after,
body .form .mpFormTable .radio-wrapper input:checked + label:after, body .mpForm .form-group .mpRadioButtonTable input:checked + label:after,
body .mpForm .form-group .checkbox-wrapper input:checked + label:after,
body .mpForm .form-group .radio-wrapper input:checked + label:after, body .mpForm .mpFormTable .mpRadioButtonTable input:checked + label:after,
body .mpForm .mpFormTable .checkbox-wrapper input:checked + label:after,
body .mpForm .mpFormTable .radio-wrapper input:checked + label:after {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  top: 0;
  left: 4px;
  color: var(--white);
  font-weight: 900;
}
body .form .form-group .mpRadioButtonTable input:active + label:before, body .form .form-group .mpRadioButtonTable input:hover + label:before, body .form .form-group .mpRadioButtonTable input:focus-visible + label:before, body .form .form-group .mpRadioButtonTable input:focus + label:before,
body .form .form-group .checkbox-wrapper input:active + label:before,
body .form .form-group .checkbox-wrapper input:hover + label:before,
body .form .form-group .checkbox-wrapper input:focus-visible + label:before,
body .form .form-group .checkbox-wrapper input:focus + label:before,
body .form .form-group .radio-wrapper input:active + label:before,
body .form .form-group .radio-wrapper input:hover + label:before,
body .form .form-group .radio-wrapper input:focus-visible + label:before,
body .form .form-group .radio-wrapper input:focus + label:before, body .form .mpFormTable .mpRadioButtonTable input:active + label:before, body .form .mpFormTable .mpRadioButtonTable input:hover + label:before, body .form .mpFormTable .mpRadioButtonTable input:focus-visible + label:before, body .form .mpFormTable .mpRadioButtonTable input:focus + label:before,
body .form .mpFormTable .checkbox-wrapper input:active + label:before,
body .form .mpFormTable .checkbox-wrapper input:hover + label:before,
body .form .mpFormTable .checkbox-wrapper input:focus-visible + label:before,
body .form .mpFormTable .checkbox-wrapper input:focus + label:before,
body .form .mpFormTable .radio-wrapper input:active + label:before,
body .form .mpFormTable .radio-wrapper input:hover + label:before,
body .form .mpFormTable .radio-wrapper input:focus-visible + label:before,
body .form .mpFormTable .radio-wrapper input:focus + label:before, body .mpForm .form-group .mpRadioButtonTable input:active + label:before, body .mpForm .form-group .mpRadioButtonTable input:hover + label:before, body .mpForm .form-group .mpRadioButtonTable input:focus-visible + label:before, body .mpForm .form-group .mpRadioButtonTable input:focus + label:before,
body .mpForm .form-group .checkbox-wrapper input:active + label:before,
body .mpForm .form-group .checkbox-wrapper input:hover + label:before,
body .mpForm .form-group .checkbox-wrapper input:focus-visible + label:before,
body .mpForm .form-group .checkbox-wrapper input:focus + label:before,
body .mpForm .form-group .radio-wrapper input:active + label:before,
body .mpForm .form-group .radio-wrapper input:hover + label:before,
body .mpForm .form-group .radio-wrapper input:focus-visible + label:before,
body .mpForm .form-group .radio-wrapper input:focus + label:before, body .mpForm .mpFormTable .mpRadioButtonTable input:active + label:before, body .mpForm .mpFormTable .mpRadioButtonTable input:hover + label:before, body .mpForm .mpFormTable .mpRadioButtonTable input:focus-visible + label:before, body .mpForm .mpFormTable .mpRadioButtonTable input:focus + label:before,
body .mpForm .mpFormTable .checkbox-wrapper input:active + label:before,
body .mpForm .mpFormTable .checkbox-wrapper input:hover + label:before,
body .mpForm .mpFormTable .checkbox-wrapper input:focus-visible + label:before,
body .mpForm .mpFormTable .checkbox-wrapper input:focus + label:before,
body .mpForm .mpFormTable .radio-wrapper input:active + label:before,
body .mpForm .mpFormTable .radio-wrapper input:hover + label:before,
body .mpForm .mpFormTable .radio-wrapper input:focus-visible + label:before,
body .mpForm .mpFormTable .radio-wrapper input:focus + label:before {
  border-color: var(--green50);
}
body .form .form-group .mpRadioButtonTable + label,
body .form .form-group .checkbox-wrapper + label,
body .form .form-group .radio-wrapper + label, body .form .mpFormTable .mpRadioButtonTable + label,
body .form .mpFormTable .checkbox-wrapper + label,
body .form .mpFormTable .radio-wrapper + label, body .mpForm .form-group .mpRadioButtonTable + label,
body .mpForm .form-group .checkbox-wrapper + label,
body .mpForm .form-group .radio-wrapper + label, body .mpForm .mpFormTable .mpRadioButtonTable + label,
body .mpForm .mpFormTable .checkbox-wrapper + label,
body .mpForm .mpFormTable .radio-wrapper + label {
  display: none;
}
body .form .form-group .mpRadioButtonTable label:before,
body .form .form-group .radio-wrapper label:before, body .form .mpFormTable .mpRadioButtonTable label:before,
body .form .mpFormTable .radio-wrapper label:before, body .mpForm .form-group .mpRadioButtonTable label:before,
body .mpForm .form-group .radio-wrapper label:before, body .mpForm .mpFormTable .mpRadioButtonTable label:before,
body .mpForm .mpFormTable .radio-wrapper label:before {
  border-radius: 50%;
}
body .form .form-group .mpRadioButtonTable input:checked + label:after,
body .form .form-group .radio-wrapper input:checked + label:after, body .form .mpFormTable .mpRadioButtonTable input:checked + label:after,
body .form .mpFormTable .radio-wrapper input:checked + label:after, body .mpForm .form-group .mpRadioButtonTable input:checked + label:after,
body .mpForm .form-group .radio-wrapper input:checked + label:after, body .mpForm .mpFormTable .mpRadioButtonTable input:checked + label:after,
body .mpForm .mpFormTable .radio-wrapper input:checked + label:after {
  top: -1px;
  content: "\f111";
  font-size: 11px;
  left: 6px;
}
body .form .form-group.radiolist, body .form .form-group.checkboxlist, body .form .mpFormTable.radiolist, body .form .mpFormTable.checkboxlist, body .mpForm .form-group.radiolist, body .mpForm .form-group.checkboxlist, body .mpForm .mpFormTable.radiolist, body .mpForm .mpFormTable.checkboxlist {
  padding-top: 32px;
  position: relative;
}
body .form .form-group.radiolist > label, body .form .form-group.checkboxlist > label, body .form .mpFormTable.radiolist > label, body .form .mpFormTable.checkboxlist > label, body .mpForm .form-group.radiolist > label, body .mpForm .form-group.checkboxlist > label, body .mpForm .mpFormTable.radiolist > label, body .mpForm .mpFormTable.checkboxlist > label {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 26px;
  font-family: "Nunito";
  font-size: 16px;
  color: #21209C;
}
body .form .form-group .field-validation-error, body .form .mpFormTable .field-validation-error, body .mpForm .form-group .field-validation-error, body .mpForm .mpFormTable .field-validation-error {
  margin-top: 8px;
  color: #FF3131;
  display: block;
}
body .form .form-group.titleanddescription .heading-3, body .form .mpFormTable.titleanddescription .heading-3, body .mpForm .form-group.titleanddescription .heading-3, body .mpForm .mpFormTable.titleanddescription .heading-3 {
  margin-bottom: 10px;
}
body .form .form-group.fileupload, body .form .mpFormTable.fileupload, body .mpForm .form-group.fileupload, body .mpForm .mpFormTable.fileupload {
  padding-top: 32px;
  position: relative;
}
body .form .form-group.fileupload label, body .form .mpFormTable.fileupload label, body .mpForm .form-group.fileupload label, body .mpForm .mpFormTable.fileupload label {
  position: absolute;
  top: 0;
  left: 0;
}
body .form .form-group.fileupload input::file-selector-button, body .form .mpFormTable.fileupload input::file-selector-button, body .mpForm .form-group.fileupload input::file-selector-button, body .mpForm .mpFormTable.fileupload input::file-selector-button {
  padding: 10px 20px;
  background-color: var(--green);
  border: 1px solid var(--green);
  cursor: pointer;
  transition: all 125ms ease-in-out;
  color: var(--white);
}
body .form .form-group.fileupload input::file-selector-button:hover, body .form .mpFormTable.fileupload input::file-selector-button:hover, body .mpForm .form-group.fileupload input::file-selector-button:hover, body .mpForm .mpFormTable.fileupload input::file-selector-button:hover {
  background-color: var(--white);
  color: var(--green);
}
body .form .form-group.titleanddescription h2, body .form .mpFormTable.titleanddescription h2, body .mpForm .form-group.titleanddescription h2, body .mpForm .mpFormTable.titleanddescription h2 {
  margin-bottom: 26px;
}
body .form .form-group.titleanddescription + .form-group, body .form .mpFormTable.titleanddescription + .form-group, body .mpForm .form-group.titleanddescription + .form-group, body .mpForm .mpFormTable.titleanddescription + .form-group {
  flex-basis: calc(50% - 8px);
}
body .form .form-group.titleanddescription + .form-group + .form-group, body .form .mpFormTable.titleanddescription + .form-group + .form-group, body .mpForm .form-group.titleanddescription + .form-group + .form-group, body .mpForm .mpFormTable.titleanddescription + .form-group + .form-group {
  flex-basis: calc(50% - 8px);
}
body .form i, body .mpForm i {
  margin-bottom: 16px;
  display: block;
}
body .form button[type=submit], body .mpForm button[type=submit] {
  margin: 26px 0;
}
body .box .content {
  padding: 14px 48px 40px 48px;
}
body .gallery {
  margin: 26px 0 0 0;
}
body .gallery .placeholder {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 250px;
}
body .gallery .placeholder .image {
  position: relative;
}
body .gallery .placeholder .image::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--green50);
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.125s ease-in-out;
}
body .gallery .placeholder .image::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--green80);
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 1;
  content: "";
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.125s ease-in-out;
}
body .gallery .placeholder .image:hover:before {
  opacity: 1;
}
body .gallery .placeholder .image:hover:after {
  opacity: 1;
}
body .gallery .placeholder .image a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body .gallery .placeholder .image a:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f002";
  font-size: 70px;
  font-weight: 900;
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.125s ease-in-out;
  z-index: 2;
}
body .gallery .placeholder .image a:hover:before {
  opacity: 0.5;
}
body .gallery .placeholder .image figure {
  width: 100%;
  height: 100%;
}
body .gallery .placeholder .image figure picture {
  width: 100%;
  height: 100%;
}
body .gallery .placeholder .image figure picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .gallery .placeholder .image:nth-child(6n+1) {
  grid-column: 1/span 3;
  grid-row: 1/span 2;
}
body .gallery .placeholder .image:nth-child(6n+2) {
  grid-column: 4/span 2;
  grid-row: 1;
}
body .gallery .placeholder .image:nth-child(6n+3) {
  grid-column: 1;
  grid-row: 3;
}
body .gallery .placeholder .image:nth-child(6n+4) {
  grid-column: 2;
  grid-row: 3;
}
body .gallery .placeholder .image:nth-child(6n+5) {
  grid-column: 3;
  grid-row: 3;
}
body .gallery .placeholder .image:nth-child(6n+6) {
  grid-column: 4/span 2;
  grid-row: 2/span 2;
}
body .gallery .placeholder + .placeholder {
  margin-top: 24px;
}
body .sitemap ul li ul {
  margin: 0;
}
body .sitemap ul li a {
  color: var(--black);
  text-decoration: none;
}
body .sitemap ul li a:hover {
  text-decoration: underline;
}
body .slick-slider {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
body .slick-slider .slick-list {
  margin: 0 -40px 0 0;
  padding: 0 !important;
}
body .slick-slider .slick-list .slick-track {
  margin-left: unset;
  margin-right: unset;
}
body .slick-slider .slick-list .slick-track .slick-slide {
  margin-right: 40px;
}
body .slider-navigation {
  display: flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
body .slider-navigation button {
  width: 50px;
  height: 50px;
  background-color: transparent;
  padding: 0;
  border: none;
  text-align: center;
  font-size: 0;
}
body .slider-navigation button:after {
  line-height: 50px;
  font-family: "Font Awesome 6 Pro";
  content: "\f061";
  font-size: 24px;
  font-weight: 900;
  color: var(--green);
}
body .slider-navigation button.slick-prev:after {
  content: "\f060";
}
body .slider-navigation button.slick-disabled {
  opacity: 0.5;
  cursor: default;
}
body .application-process,
body .references,
body .products {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
}
body .application-process.slick-initialized,
body .references.slick-initialized,
body .products.slick-initialized {
  visibility: visible;
  opacity: 1;
}
body .application-process .process-slider {
  overflow: visible !important;
}
body .application-process .process-slider .slick-list {
  overflow: visible;
}
body .application-process .process-slider .process {
  background-color: var(--green);
  padding: 48px;
  text-align: center;
}
body .application-process .process-slider .process p.title {
  padding: 0;
  font-family: "Nunito Sans";
  text-transform: uppercase;
  line-height: 30px;
  font-size: 28px;
}
body .application-process .process-slider .process * {
  color: var(--white);
}

.hamburger {
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  width: 48px;
  height: 48px;
}

.hamburger-box {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
}

.hamburger-box .text {
  width: 48px;
  line-height: 12px;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  display: block;
  position: absolute;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin: -1px 8px 0;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 32px;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  border-radius: 2px;
  transition-property: transform;
  transition-duration: 0.125s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  background-color: var(--white);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  background-color: var(--white);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

nav.mobile {
  height: 0;
  width: 100%;
  position: fixed;
  z-index: 1000;
  bottom: 0;
  left: 0;
  background-color: var(--white);
  overflow-x: hidden;
  overflow-y: auto;
  transition: 0.5s;
  text-align: center;
}
nav.mobile > .mobile-placeholder {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.16);
}
nav.mobile .slinky-menu {
  overflow: hidden;
  transform: translateZ(0);
}
nav.mobile .slinky-menu > ul {
  left: 0;
  position: relative;
  transform: translateZ(0);
}
nav.mobile .slinky-menu ul, nav.mobile .slinky-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.mobile .slinky-menu ul {
  width: 100%;
}
nav.mobile .slinky-menu a, nav.mobile .slinky-menu p {
  align-items: center;
  display: flex;
  margin: 0;
}
nav.mobile .slinky-menu a span, nav.mobile .slinky-menu p span {
  line-height: 32px;
  flex: 1;
}
nav.mobile .slinky-menu li ul {
  display: none;
  left: 100%;
  position: absolute;
  top: 0;
}
nav.mobile .slinky-menu .header {
  display: flex;
}
nav.mobile .slinky-menu .header .title {
  flex: 1;
  line-height: 1.4;
  margin: 0;
  order: 1;
}
nav.mobile .slinky-theme-default li, nav.mobile .slinky-theme-default li a, nav.mobile .slinky-theme-default li a span {
  text-align: left;
}
nav.mobile .slinky-theme-default li {
  line-height: 1;
  border-bottom: 1px solid #EDF5FA;
  display: block;
  position: unset;
}
nav.mobile .slinky-theme-default li:before {
  display: none;
}
nav.mobile .slinky-theme-default li.button {
  background-color: var(--green);
  border-bottom-color: var(--green);
}
nav.mobile .slinky-theme-default li.button a {
  color: var(--white) !important;
}
nav.mobile .slinky-theme-default ul {
  border-top: 1px solid #EDF5FA;
}
nav.mobile .slinky-theme-default .back {
  padding: 8px 35px;
  line-height: 32px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
}
nav.mobile .slinky-theme-default .back:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f053";
  color: var(--green);
}
nav.mobile .slinky-theme-default .next {
  padding: 8px 35px;
  line-height: 32px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
}
nav.mobile .slinky-theme-default .next:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f054";
  color: var(--green);
}
nav.mobile .slinky-theme-default a:not(.back):not(.next),
nav.mobile .slinky-theme-default p:not(.back):not(.next) {
  width: calc(100% - 85px);
  padding: 8px 35px;
  text-decoration: none;
  color: #000000;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
}
nav.mobile .slinky-theme-default a:not(.back):not(.next):hover, nav.mobile .slinky-theme-default a:not(.back):not(.next):active {
  text-decoration: underline;
}

.mpForm {
  padding: 15px 0 0 0;
}
.mpForm .mpErrorSummary {
  display: none !important;
  visibility: hidden !important;
}
.mpForm ul {
  margin: 0;
  padding: 0;
}
.mpForm ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mpForm ul li#CNT1090 {
  position: relative;
}
.mpForm ul li#CNT1266 .mpFormLabel, .mpForm ul li#CNT1268 .mpFormLabel {
  margin: 22px 0 0 0;
}
.mpForm ul li#CNT1266 .mpFormLabel label, .mpForm ul li#CNT1268 .mpFormLabel label {
  left: 0;
  bottom: 0;
  padding: 0;
  font-size: unset;
  font-weight: bold;
  line-height: unset;
}
.mpForm ul li#CNT1266 .mpFormField, .mpForm ul li#CNT1268 .mpFormField {
  margin: 11px 0 0 0;
}
.mpForm ul li::before {
  display: none;
  visibility: hidden;
}
.mpForm ul li .mpFormLabel {
  line-height: 22px;
  display: block;
}
.mpForm ul li .mpFormLabel label {
  left: 24px;
  bottom: -11px;
  transform: translate(0, -20px);
  font-size: 12px;
  line-height: 12px;
  background-color: var(--white);
  border-radius: 0;
  padding: 3px 8px;
  color: var(--green);
  position: relative;
}
.mpForm ul li .mpFormLabel .mandatorySign {
  display: none;
  visibility: hidden;
}
.mpForm ul li .mpErrorRow {
  display: none;
  visibility: hidden;
}
.mpForm ul li input[type=text] {
  width: 100%;
  padding: 16px 0;
  background-color: transparent;
  border: 2px solid #9da7a3;
  color: var(--white);
}
.mpForm ul li input[type=submit] {
  line-height: 26px;
  background-color: var(--green);
  border: 2px solid var(--green);
  padding: 10px 20px;
  font-weight: 600;
  color: var(--white);
  display: block;
  cursor: pointer;
  /*
  top: -58px;
  right: 0;
  width: 58px;
  line-height: 26px;
  font-family: 'Nunito';
  font-size: 16px;
  background-color: #9da7a3;
  border: 2px solid #9da7a3;
  padding: 14px 20px;
  font-size: 0;
  color: var(--black);
  content: "";
  text-indent: -9999px;
  display: block;
  position: absolute;
  cursor: pointer;
  	*/
}
.mpForm ul li input[type=submit]:hover {
  background-color: transparent;
  border-color: var(--black);
  color: var(--black);
}
.mpForm ul li .submitCell {
  /*
  &::after {
  	top: -58px;
  	right: 0;
  	width: 58px;
  	height: 58px;
  	line-height: 58px;
  	font-family: "Font Awesome 6 pro";
  	font-size: 24px;
  	font-weight: 900;
  	text-align: center;
  	color: var(--green);
  	content: "\f1d8";
  	display: block;
  	position: absolute;
  	pointer-events: none;
  }
  */
}
.mpForm ul li.error {
  /*
  + li {
  	[type=submit] {
  		background-color: #b93434;
  		border-color: #b93434;
  	}
  }
  	*/
}
.mpForm ul li.error input[type=text] {
  border-color: #b93434;
}

table {
  width: 100%;
  margin: 28px 0 0 0;
  padding: 0;
  border: 0;
  border-collapse: collapse;
}

table thead {
  background-color: var(--green);
  color: var(--white);
}

table thead tr th {
  padding: 10px 20px;
  text-align: left;
}

table tbody tr {
  border-bottom: 1px solid var(--green50);
}

table tbody tr td {
  padding: 10px 20px;
}

.video-popup {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--green80);
  position: fixed;
  transition: all linear 125ms;
  z-index: 100;
  -webkit-transform: translateZ(0);
  opacity: 0;
  pointer-events: none;
}

.video-popup.opened {
  opacity: 1;
  pointer-events: all;
}

.video-popup .video-popup-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 80px);
  max-width: 1300px;
}

.video-popup .video-popup-placeholder .close {
  position: absolute;
  top: -5px;
  right: -10px;
  transform: translate(100%, -100%);
  color: #FFFFFF;
  font-size: 30px;
  cursor: pointer;
}

.video-popup .video-popup-placeholder .close:hover {
  opacity: 0.8;
}

.video-popup .video-popup-placeholder .video {
  padding-top: 56.25%;
  width: 100%;
  padding-top: 56.25%;
}

.video-popup .video-popup-placeholder .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

p.button.show-video {
  bottom: 30px;
  left: 48px;
  position: absolute;
  z-index: 2;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
  color: #FFFFFF !important;
  background: rgba(56, 78, 70, 0.5019607843) !important;
  box-shadow: none;
  border-radius: 3px;
}

.is-selected .pika-button,
.has-event .pika-button {
  color: #FFFFFF !important;
  font-weight: bold;
  background: #384E46 !important;
  box-shadow: unset !important;
  border-radius: 3px;
}

.is-today .pika-button {
  color: #384E46 !important;
  font-weight: bold !important;
}

.is-today.is-selected .pika-button,
.is-today.is-selected .pika-button:hover {
  color: #FFFFFF !important;
}

@media (max-width: 767px) {
  body h1, body h2, body h3, body h4, body h5, body h6 {
    margin: 0;
    padding: 26px 0 0 0;
    font-family: "Nunito Sans";
    text-transform: uppercase;
  }
  body h1, body .h1 {
    line-height: 36px;
    font-size: 34px;
    font-weight: 900;
    color: var(--black);
  }
  body h2, body .h2 {
    line-height: 30px;
    font-size: 28px;
    font-weight: 900;
    color: var(--black);
  }
  body h3, body .h3 {
    line-height: 26px;
    font-size: 24px;
    font-weight: 900;
    color: var(--black);
  }
  body h4, body .h4, body h5, body .h5, body h6, body .h6 {
    line-height: 22px;
    font-size: 20px;
    font-weight: 900;
    color: var(--black);
  }
  body .wrapper {
    margin: 0 32px;
    padding: 0;
  }
  body main section#jumbotron .wrapper {
    margin: 0;
  }
  body main section#jumbotron .placeholder {
    flex-direction: column;
  }
  body main section#jumbotron .placeholder > .content > .content-placeholder .breadcrumb {
    display: none;
    visibility: hidden;
  }
  body main section#jumbotron .placeholder .content {
    width: 100%;
    margin-top: 0;
    padding: 0 40px 56px 40px;
    order: 2;
  }
  body main section#jumbotron .placeholder .video {
    margin: 0;
  }
  body main section#jumbotron .placeholder .video .placeholder {
    margin: 0;
    position: static;
  }
  body main section#jumbotron .placeholder .image {
    position: relative;
    order: 1;
  }
  body main section#jumbotron .placeholder .image .placeholder {
    position: static;
  }
  body main section#jumbotron .placeholder .image .placeholder img {
    position: static;
    aspect-ratio: 4/3;
  }
  body main section#jumbotron.with-video::before {
    left: unset;
    right: 0;
    width: 140px;
    height: 140px;
    transform: rotate(-90deg);
  }
  body main section#jumbotron.with-video .placeholder .content {
    width: calc(100% - 80px);
    order: 2;
  }
  body main section#jumbotron.with-video .placeholder .content .summary {
    padding-right: unset;
  }
  body main section#jumbotron.with-video .placeholder .video {
    width: 100%;
    margin: 0;
    order: 1;
  }
  body main section#jumbotron.with-video .placeholder .video::before, body main section#jumbotron.with-video .placeholder .video::after {
    width: unset;
    height: 56px;
    top: unset;
    left: 0;
    right: 0;
    bottom: 0;
  }
  body main section#jumbotron.with-image {
    margin-top: 0;
  }
  body main section#jumbotron.with-image .placeholder {
    bottom: 0;
  }
  body main section#jumbotron.with-image .placeholder > .content {
    width: 100%;
    z-index: 12;
    position: unset;
  }
  body main section#jumbotron.with-image .placeholder > .content::before {
    display: none;
    visibility: hidden;
  }
  body main section#jumbotron.with-image .placeholder > .content::after {
    top: unset;
    right: 0;
    bottom: 0;
    left: unset;
    width: 140px;
    height: 140px;
    background-color: transparent;
    background-image: url("/Themes/Theme/Images/pattern_white.svg");
    transform: rotate(-90deg);
    content: "";
    position: absolute;
    z-index: 11;
  }
  body main section#jumbotron.with-image .placeholder > .content .content-placeholder {
    padding: 0;
    position: relative;
    z-index: 2;
  }
  body main section#jumbotron.with-image .placeholder .image {
    position: relative;
    overflow: hidden;
  }
  body main section#jumbotron.with-image .placeholder .image::before {
    width: 100%;
    height: 56px;
    top: unset;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--green50);
    position: absolute;
    z-index: 2;
    content: "";
  }
  body main section#jumbotron.with-image .placeholder .image::after {
    width: 100%;
    height: 56px;
    top: unset;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--green80);
    background-image: none;
    mix-blend-mode: multiply;
    position: absolute;
    transform: none;
    z-index: 1;
    content: "";
  }
  body main section#jumbotron.product .placeholder > .content {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }
  body main section#jumbotron.product .placeholder > .content .content-placeholder {
    padding-right: 0;
    padding-bottom: 80px;
    padding-left: 0;
  }
  body main section#jumbotron.product .placeholder > .content .content-placeholder .quality-marks {
    padding: 22px 0 0 0;
    display: flex;
    flex-direction: row;
  }
  body main section#jumbotron.product .placeholder > .content .content-placeholder .quality-marks .quality-mark {
    padding: 26px 0 0 0;
  }
  body main section#jumbotron.product .placeholder > .content .content-placeholder .quality-marks .quality-mark object {
    width: auto;
    height: 32px;
    display: block;
  }
  body main section#jumbotron.product .placeholder .contact-information {
    margin: auto 0 -84px 0;
    background-color: var(--black);
    position: relative;
    z-index: 2;
  }
  body main section#jumbotron.product .placeholder .contact-information p {
    color: var(--white);
  }
  body main section#jumbotron.product .placeholder .contact-information p.button {
    padding-top: 12px;
  }
  body main section#jumbotron.product .placeholder .contact-information p.button a span {
    background-color: transparent;
    border-color: var(--white);
  }
  body main section#jumbotron.product .placeholder .contact-information p.button a:hover span {
    background-color: var(--white);
    color: var(--black);
  }
  body main section#jumbotron.product .placeholder .contact-information .content {
    padding: 22px 40px 48px 40px;
  }
  body main section#jumbotron.product + section.top {
    padding-top: 128px;
  }
  body main section#jumbotron.reference + section.top {
    padding-top: 32px;
  }
  body main section#jumbotron .h5 + h1 {
    padding: 0;
  }
  body main section#jumbotron + section.top {
    padding-top: 22px;
  }
  body main section:not(.full-width) .hero.without-images .background-image {
    top: unset;
    bottom: 0;
    left: unset;
    width: calc(100% - 32px);
    padding-top: 100%;
    overflow: hidden;
    position: relative;
    order: 2;
  }
  body main section:not(.full-width) .hero.without-images .background-image::before, body main section:not(.full-width) .hero.without-images .background-image::after {
    display: none;
    visibility: hidden;
  }
  body main section:not(.full-width) .hero.without-images .background-image figure {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
  }
  body main section:not(.full-width) .hero.without-images .grid .column:first-child {
    width: 100%;
  }
  body main section:not(.full-width) .hero.without-images .grid .column:first-child .content {
    margin: 0 0 -200px -32px;
    padding: 0 0 80px 32px;
    background-color: var(--green50);
    position: relative;
  }
  body main section:not(.full-width) .hero.without-images .grid .column:first-child .content::after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--green80);
    mix-blend-mode: multiply;
    position: absolute;
    z-index: -1;
    content: "";
  }
  body main section .column-6 .features {
    margin-top: 48px;
  }
  body main section .reference {
    margin: 0;
  }
  body main section .reference figure.reference {
    margin: 0;
  }
  body main section .reference figure.reference:before, body main section .reference figure.reference:after {
    right: 0;
    width: 100%;
    height: 56px;
    top: unset;
  }
  body main section .reference .content {
    margin-left: 0;
    padding: 0 40px 56px 40px;
  }
  body main section .gallery .placeholder {
    grid-gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  body main section .gallery .placeholder .image:nth-child(6n+1) {
    grid-column: 1/span 2;
    grid-row: 1;
  }
  body main section .gallery .placeholder .image:nth-child(6n+2) {
    grid-column: 1;
    grid-row: 2;
  }
  body main section .gallery .placeholder .image:nth-child(6n+3) {
    grid-column: 2;
    grid-row: 2;
  }
  body main section .gallery .placeholder .image:nth-child(6n+4) {
    grid-column: 1/span 2;
    grid-row: 3;
  }
  body main section .gallery .placeholder .image:nth-child(6n+5) {
    grid-column: 1;
    grid-row: 4;
  }
  body main section .gallery .placeholder .image:nth-child(6n+6) {
    grid-column: 2;
    grid-row: 4;
  }
  body main section .gallery .placeholder + .placeholder {
    margin-top: 16px;
  }
  body .card .placeholder.position-right {
    flex-direction: column;
  }
  body .card .placeholder.position-right > figure {
    width: 100%;
    height: unset;
  }
  body .card .placeholder.position-right > figure picture {
    height: unset;
  }
  body .card .placeholder.position-right > figure.ratio_1_1 picture {
    padding-top: 100%;
  }
  body .card .placeholder.position-right > figure.ratio_4_3 picture {
    padding-top: 75%;
  }
  body .card .placeholder.position-right > figure.ratio_5_2 picture {
    padding-top: 40%;
  }
  body .card .placeholder.position-right > figure.ratio_5_1 picture {
    padding-top: 20%;
  }
  body .card .placeholder.position-right > figure.ratio_16_9 picture {
    padding-top: 56.25%;
  }
  body .card .placeholder.position-right .content {
    width: unset;
    margin: -48px 22px 0 22px;
    padding: 0 22px 26px 22px;
  }
  body .card .placeholder.position-below .content {
    width: unset;
    margin: -48px 22px 0 22px;
    padding: 0 22px 26px 22px;
  }
  body .hero {
    margin: 0 -32px;
  }
  body .hero .wrapper .grid .column figure {
    margin: 26px 0 0 0;
  }
  body .hero .wrapper .grid .column figure picture {
    overflow: hidden;
  }
  body .hero .wrapper .grid .column:nth-child(2) figure {
    margin-top: 80px;
  }
  body .hero .wrapper .grid .column:nth-child(2) figure picutre {
    padding-top: 56.25%;
  }
  body .hero .wrapper .grid .column:nth-child(3) figure {
    margin-bottom: -112px;
  }
  body .hero .wrapper .grid .column:nth-child(3) figure picture {
    padding-top: 100%;
    display: block;
    position: relative;
  }
  body .hero .wrapper .grid .column:nth-child(3) figure picture img {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
  }
  body .hero.without-images {
    margin: 0 -32px 0 -32px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }
  body .hero.without-images .background-image {
    top: unset;
    bottom: 0;
    width: calc(100% - 32px);
    padding-top: 100%;
    overflow: hidden;
    position: relative;
    order: 2;
  }
  body .hero.without-images .background-image::before, body .hero.without-images .background-image::after {
    display: none;
    visibility: hidden;
  }
  body .hero.without-images .background-image figure {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
  }
  body .hero.without-images .wrapper {
    order: 1;
  }
  body .hero.without-images .wrapper .grid {
    align-items: flex-start;
  }
  body .hero.without-images .wrapper .grid .content {
    margin: 0 0 -200px -32px;
    padding: 0 0 80px 32px;
    background-color: var(--green50);
    position: relative;
  }
  body .hero.without-images .wrapper .grid .content::after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--green80);
    mix-blend-mode: multiply;
    position: absolute;
    z-index: -1;
    content: "";
  }
  body .employee.detail-view {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 0;
    padding-top: 22px;
  }
  body .employee.detail-view .background-image {
    position: relative;
    width: 100%;
    left: 0;
  }
  body .employee.detail-view .background-image:before, body .employee.detail-view .background-image:after {
    /*
    right: 0;
    width: 100%;
    height: 35%;
    bottom: unset;
    */
    display: none;
    visibility: hidden;
  }
  body .employee.detail-view .wrapper .grid .column:first-child {
    width: 100%;
  }
  body .employee.detail-view .wrapper .grid .column:first-child .content {
    padding-bottom: 48px !important;
  }
  body footer .footer-top .grid .column {
    width: 100%;
    text-align: center;
    margin-left: unset !important;
  }
  body footer .footer-top .grid .column .predicate img {
    margin: 0 auto;
    display: table;
  }
  body footer .footer-top .grid .column:not(:last-child) {
    margin-top: 32px;
  }
  body footer .footer-top .grid .column:nth-child(1) {
    order: 4;
  }
  body footer .footer-top .grid .column:nth-child(2) {
    order: 3;
  }
  body footer .footer-top .grid .column:nth-child(3) {
    order: 2;
  }
  body footer .footer-top .grid .column:nth-child(4) {
    order: 1;
  }
  body footer .footer-top .grid .column .social {
    align-content: center;
  }
  body footer .footer-top .grid .column .social ul {
    justify-content: center;
  }
  body footer .footer-bottom {
    background-color: var(--white);
  }
  body footer .footer-bottom p {
    font-size: 14px;
    padding: 12px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--black);
  }
  body footer .footer-bottom p a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--black);
  }
  body footer .footer-bottom p a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 575px) {
  body .grid {
    gap: 26px;
  }
  body .grid .column .product.detail .employee .wrapper .grid .column {
    padding: 0;
  }
  body main section#jumbotron.with-video .placeholder .content {
    width: 100%;
  }
  body main section .features {
    flex-direction: column;
  }
  body main section .features figure {
    width: 100%;
    padding-top: 50%;
    position: relative;
  }
  body main section .features figure picture {
    padding-top: unset;
    width: 100%;
    height: 100%;
  }
  body main section .features figure picture img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  body main .references-home .references {
    margin-bottom: 50px;
  }
  body main .references-home .references .slick-track {
    margin-left: 0;
    margin-right: 0;
  }
  body main .references-home .slider-navigation {
    bottom: 76px !important;
  }
  body main .slider {
    position: relative;
  }
  body main .slider .products {
    margin-bottom: 76px;
  }
  body main .slider .slider-navigation {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
  }
  body .card .placeholder.position-above .content {
    width: 100% !important;
    max-width: unset !important;
    flex-direction: column;
    margin: 0 auto !important;
    padding: 0 0 26px 0;
    position: relative;
    z-index: 2;
    justify-content: space-between;
  }
  body .card .placeholder.position-above .content.green {
    padding: 54px 32px 80px 32px;
    margin-bottom: 26px !important;
  }
  body .card .placeholder.position-above .content .left {
    width: 100%;
  }
  body .card .placeholder.position-above .content .right {
    width: 100%;
  }
  body .card .placeholder.position-above .content figure {
    margin-top: 26px;
  }
  body .card .placeholder.position-above .content figure picture {
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
  }
  body .card .placeholder.position-above .content.green {
    background-color: var(--green);
    padding-top: 80px;
  }
  body .card .placeholder.position-above .content.green * {
    color: var(--white);
  }
  body .card .placeholder.position-above .content.green .button a span {
    border-color: var(--white);
  }
  body .card .placeholder.position-above .content.green .button a:hover span {
    background-color: var(--white);
    color: var(--green);
  }
  body .card .placeholder.position-above > figure.ratio_5_1 picture {
    padding-top: 40% !important;
  }
  body .card .placeholder.position-above > figure picture {
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
  }
  body .card .placeholder figure picture img {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
    position: absolute;
    z-index: 1;
  }
  body .card .placeholder .content {
    padding: 0 22px 26px 22px;
    background-color: var(--white);
    position: relative;
    z-index: 2;
  }
  body .card .placeholder .content .h5 + h3,
  body .card .placeholder .content .h5 + p.h3 {
    padding: 0;
    color: var(--green);
  }
  body .card .placeholder .content h5 + p.sub_title,
  body .card .placeholder .content p.h5 + p.sub_title {
    padding: 0;
    text-transform: uppercase;
  }
  body .card .placeholder .content h6 + p.sub_title,
  body .card .placeholder .content p.h6 + p.sub_title {
    padding: 0;
    text-transform: uppercase;
  }
}
@media (max-width: 820px) {
  main section .features .content ul {
    flex-direction: column;
  }
  main section .features .content ul li {
    width: 100% !important;
  }
}
@media (max-width: 839px) {
  body footer .footer-top .wrapper .grid .column:nth-child(1) {
    flex-basis: 100%;
  }
}
@media (min-width: 576px) {
  body main .references-home .references {
    margin-bottom: 50px;
  }
  body main .references-home .references .slick-track {
    margin-left: 0;
    margin-right: 0;
  }
  body main .references-home .slider-navigation {
    bottom: 76px !important;
  }
  body main .slider {
    position: relative;
  }
  body main .slider .products {
    margin-bottom: unset;
  }
  body main .slider .slider-navigation {
    position: absolute;
    top: 14px;
    right: 0;
    bottom: unset;
    left: unset;
    transform: unset;
  }
}
@media (min-width: 576px) and (max-width: 1180px) {
  body main section#jumbotron .wrapper {
    margin: 0;
    padding: 0;
  }
  body main section#jumbotron .placeholder {
    flex-direction: column;
  }
  body main section#jumbotron .placeholder > .content > .content-placeholder .breadcrumb {
    display: none;
    visibility: hidden;
  }
  body main section#jumbotron .placeholder .content {
    width: 100%;
    margin-top: 0;
    padding: 0 40px 56px 40px;
    order: 2;
  }
  body main section#jumbotron .placeholder .video {
    margin: 0;
  }
  body main section#jumbotron .placeholder .video .placeholder {
    margin: 0;
    position: static;
  }
  body main section#jumbotron .placeholder .image {
    position: relative;
    order: 1;
  }
  body main section#jumbotron .placeholder .image .placeholder {
    position: static;
  }
  body main section#jumbotron .placeholder .image .placeholder img {
    position: static;
    aspect-ratio: 4/3;
  }
  body main section#jumbotron.with-video::before {
    left: unset;
    right: 0;
    width: 140px;
    height: 140px;
    transform: rotate(-90deg);
  }
  body main section#jumbotron.with-video .placeholder .content {
    width: calc(100% - 80px);
    order: 2;
  }
  body main section#jumbotron.with-video .placeholder .content .summary {
    padding-right: unset;
  }
  body main section#jumbotron.with-video .placeholder .video {
    width: 100%;
    margin: 0;
    order: 1;
  }
  body main section#jumbotron.with-video .placeholder .video::before, body main section#jumbotron.with-video .placeholder .video::after {
    width: unset;
    height: 56px;
    top: unset;
    left: 0;
    right: 0;
    bottom: 0;
  }
  body main section#jumbotron.with-image {
    margin-top: 0;
  }
  body main section#jumbotron.with-image .placeholder {
    bottom: 0;
  }
  body main section#jumbotron.with-image .placeholder > .content {
    width: 100%;
    z-index: 12;
    position: unset;
  }
  body main section#jumbotron.with-image .placeholder > .content::before {
    display: none;
    visibility: hidden;
  }
  body main section#jumbotron.with-image .placeholder > .content::after {
    top: unset;
    right: 0;
    bottom: 0;
    left: unset;
    width: 140px;
    height: 140px;
    background-color: transparent;
    background-image: url("/Themes/Theme/Images/pattern_white.svg");
    transform: rotate(-90deg);
    content: "";
    position: absolute;
    z-index: 11;
  }
  body main section#jumbotron.with-image .placeholder > .content .content-placeholder {
    padding: 0;
    position: relative;
    z-index: 2;
  }
  body main section#jumbotron.with-image .placeholder .image {
    position: relative;
  }
  body main section#jumbotron.with-image .placeholder .image::before {
    width: 100%;
    height: 56px;
    top: unset;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--green50);
    position: absolute;
    z-index: 2;
    content: "";
  }
  body main section#jumbotron.with-image .placeholder .image::after {
    width: 100%;
    height: 56px;
    top: unset;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--green80);
    background-image: none;
    mix-blend-mode: multiply;
    position: absolute;
    transform: none;
    z-index: 1;
    content: "";
  }
  body main section#jumbotron.product .placeholder > .content {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }
  body main section#jumbotron.product .placeholder > .content .content-placeholder {
    padding-right: 0;
    padding-bottom: 80px;
    padding-left: 0;
  }
  body main section#jumbotron.product .placeholder > .content .content-placeholder .quality-marks {
    padding: 22px 0 0 0;
    display: flex;
    flex-direction: row;
  }
  body main section#jumbotron.product .placeholder > .content .content-placeholder .quality-marks .quality-mark {
    padding: 26px 0 0 0;
  }
  body main section#jumbotron.product .placeholder > .content .content-placeholder .quality-marks .quality-mark object {
    width: auto;
    height: 32px;
    display: block;
  }
  body main section#jumbotron.product .placeholder .contact-information {
    margin: auto 0 -84px 0;
    background-color: var(--black);
    position: relative;
    z-index: 2;
  }
  body main section#jumbotron.product .placeholder .contact-information p {
    color: var(--white);
  }
  body main section#jumbotron.product .placeholder .contact-information p.button {
    padding-top: 12px;
  }
  body main section#jumbotron.product .placeholder .contact-information p.button a span {
    background-color: transparent;
    border-color: var(--white);
  }
  body main section#jumbotron.product .placeholder .contact-information p.button a:hover span {
    background-color: var(--white);
    color: var(--black);
  }
  body main section#jumbotron.product .placeholder .contact-information .content {
    padding: 22px 40px 48px 40px;
  }
  body main section#jumbotron.product + section.top {
    padding-top: 128px;
  }
  body main section#jumbotron .h5 + h1 {
    padding: 0;
  }
  body main section#jumbotron + section.top {
    padding-top: 22px;
  }
}
@media (min-width: 767px) and (max-width: 1180px) {
  body main section#jumbotron.reference + section.top {
    padding-top: 112px;
  }
  body main section#jumbotron.with-image .placeholder .image {
    overflow: hidden;
  }
}
@media (min-width: 768px) and (max-width: 820px) {
  body main section .features {
    flex-direction: column;
  }
  body main section .features figure {
    width: 100%;
    padding-top: 50%;
    position: relative;
  }
  body main section .features figure picture {
    padding-top: unset;
    width: 100%;
    height: 100%;
  }
  body main section .features figure picture img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  body main section .gallery .placeholder {
    grid-auto-rows: 150px;
  }
  body .card .placeholder.position-right {
    flex-direction: column;
  }
  body .card .placeholder.position-right > figure {
    width: 100%;
    height: unset;
  }
  body .card .placeholder.position-right > figure picture {
    height: unset;
  }
  body .card .placeholder.position-right > figure.ratio_1_1 picture {
    padding-top: 100%;
  }
  body .card .placeholder.position-right > figure.ratio_4_3 picture {
    padding-top: 75%;
  }
  body .card .placeholder.position-right > figure.ratio_5_2 picture {
    padding-top: 40%;
  }
  body .card .placeholder.position-right > figure.ratio_5_1 picture {
    padding-top: 20%;
  }
  body .card .placeholder.position-right > figure.ratio_16_9 picture {
    padding-top: 56.25%;
  }
  body .card .placeholder.position-right .content {
    width: unset;
    margin: -48px 22px 0 22px;
    padding: 0 22px 26px 22px;
  }
  body .card .placeholder.position-below .content {
    width: unset;
    margin: -48px 22px 0 22px;
    padding: 0 22px 26px 22px;
  }
}
@media (min-width: 821px) and (max-width: 1024px) {
  body main section .features {
    flex-direction: column;
  }
  body main section .features figure {
    width: 100%;
    padding-top: 50%;
    position: relative;
  }
  body main section .features figure picture {
    padding-top: unset;
    width: 100%;
    height: 100%;
  }
  body main section .features figure picture img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  body .card .placeholder.position-right {
    flex-direction: column;
  }
  body .card .placeholder.position-right > figure {
    width: 100%;
    height: unset;
  }
  body .card .placeholder.position-right > figure picture {
    height: unset;
  }
  body .card .placeholder.position-right > figure.ratio_1_1 picture {
    padding-top: 100%;
  }
  body .card .placeholder.position-right > figure.ratio_4_3 picture {
    padding-top: 75%;
  }
  body .card .placeholder.position-right > figure.ratio_5_2 picture {
    padding-top: 40%;
  }
  body .card .placeholder.position-right > figure.ratio_5_1 picture {
    padding-top: 20%;
  }
  body .card .placeholder.position-right > figure.ratio_16_9 picture {
    padding-top: 56.25%;
  }
  body .card .placeholder.position-right .content {
    width: unset;
    margin: -48px 22px 0 22px;
    padding: 0 22px 26px 22px;
  }
  body .card .placeholder.position-below .content {
    width: unset;
    margin: -48px 22px 0 22px;
    padding: 0 22px 26px 22px;
  }
  main section .features .content ul {
    flex-direction: column;
  }
  main section .features .content ul li {
    width: 100% !important;
  }
}
@media (min-width: 1025px) and (max-width: 1366px) {
  main section .features .content ul {
    flex-direction: column;
  }
  main section .features .content ul li {
    width: 100% !important;
  }
}
@media (min-width: 1367px) {
  body footer .footer-top .grid .column:first-of-type {
    margin-left: unset;
  }
}
@media (max-width: 1100px) {
  body header {
    padding: 12px 0 18px 0;
  }
  body header ul {
    justify-content: start;
    position: relative;
  }
  body header ul li.logo {
    display: inline-block;
  }
  body header ul li.logo a object {
    height: 80px;
  }
  body header ul li.logo.hide-mobile {
    display: none;
    visibility: hidden;
  }
  body header ul li.logo.hide-desktop a object {
    height: 48px !important;
  }
  body header ul li.navigation {
    display: none;
    visibility: hidden;
  }
  body header ul li.mobile-navigation {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
  }
  body .employee.detail-view .wrapper .grid .column:first-child .content {
    padding: 0;
  }
  body .gallery .placeholder {
    grid-gap: 16px;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }
  body .gallery .placeholder .image:nth-child(6n+1) {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
  body .gallery .placeholder .image:nth-child(6n+2) {
    grid-column: 3/span 2;
    grid-row: 1;
  }
  body .gallery .placeholder .image:nth-child(6n+3) {
    grid-column: 1/span 2;
    grid-row: 3;
  }
  body .gallery .placeholder .image:nth-child(6n+4) {
    grid-column: 3;
    grid-row: 2;
  }
  body .gallery .placeholder .image:nth-child(6n+5) {
    grid-column: 3;
    grid-row: 3;
  }
  body .gallery .placeholder .image:nth-child(6n+6) {
    grid-column: 4;
    grid-row: 2/span 2;
  }
  body .gallery .placeholder + .placeholder {
    margin-top: 16px;
  }
  .jobs .job .info {
    display: flex;
    margin-top: 10px;
  }
  .jobs .job .info li:first-child {
    padding-left: 0;
    padding-right: 24px;
  }
  .jobs .job .info li:first-child:before {
    display: none;
  }
}
@media (min-width: 1101px) {
  body header ul li.logo.hide-desktop {
    display: none;
    visibility: hidden;
  }
}
.cookie-table table.table {
  width: 100%;
  display: -ms-inline-flexbox;
  overflow-x: auto;
}

.cookie-table table.table caption {
  display: none;
}

.cookie-table table.table thead tr {
  border-bottom: 1px solid var(--green);
}

.cookie-table table.table thead tr th {
  padding: 12px 10px;
  color: var(--white);
}

.cookie-table table.table tbody {
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}

.cookie-table table.table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.cookie-table table.table tbody tr:last-of-type {
  border-bottom: 0px;
}

.cookie-table table.table tbody tr td {
  padding: 10px;
}

.cookie-table table.table tbody tr td strong {
  color: var(--green);
}

.cookie-table table.table {
  border: 0;
  border-collapse: collapse;
  margin: 0 0 24px 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

.cookie-table table.table tr {
  border: 0;
}

.cookie-table table.table th, .cookie-table table.table td {
  text-align: left;
}

.cookie-table table.table th {
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .cookie-table table.table {
    margin: 0;
    border: 0;
  }
  .cookie-table table.table caption {
    font-size: 1.3em;
    display: block;
  }
  .cookie-table table.table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .cookie-table table.table tbody {
    box-shadow: none;
  }
  .cookie-table table.table tr {
    display: block;
    margin-bottom: 24px;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  }
  .cookie-table table.table tr:last-of-type {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  }
  .cookie-table table.table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    text-align: left;
    display: block;
  }
  .cookie-table table.table td::before {
    content: attr(data-label);
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    color: var(--green);
  }
  .cookie-table table.table td:last-child {
    border-bottom: 0;
  }
}
/**/
.popup-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

.popup-overlay .popup-wrapper {
  background-color: white;
  margin: auto;
  position: relative;
  width: 40%;
  top: 50%;
  transform: translateY(-50%);
  padding: 72px 20px 20px 20px;
}

.popup-overlay .popup-wrapper .popup-close {
  top: 20px;
  right: 20px;
  width: 32px;
  line-height: 32px;
  height: 32px;
  background-color: #384E46;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  text-align: center;
  color: #FFFFFF;
  display: block;
  position: absolute;
  cursor: pointer;
}

.popup-overlay .popup-wrapper .popup-close:after {
  line-height: 30px;
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  text-align: center;
  content: "\f00d";
  display: block;
  color: #FFFFFF;
}

.popup-overlay .popup-wrapper .popup-close:hover {
  background-color: #000000;
}

.popup-overlay .popup-wrapper .popup-close:hover::after {
  color: white;
}

.popup-overlay .popup-wrapper .popup-body .mpForm {
  padding: 0;
}

.popup-overlay .popup-wrapper .popup-body p {
  margin: 0 0 27px 0;
}

.popup-overlay .popup-wrapper .popup-body .popup-button {
  margin: 0;
}

.popup-overlay#download-popup {
  display: none;
}

/*
		.popup-overlay#download-popup input[type=submit] {background-color: rgba(0,0,0,0.5); border-color: #C9AC68; color: #C9AC68;}
		.popup-overlay#download-popup input[type=submit]:hover {background-color: #C9AC68; color: #FFFFFF;}
	*/
#mpform1202 {
  display: none;
  padding: 48px 40px 0 40px;
}

@media (max-width: 1100px) {
  .popup-overlay .popup-wrapper {
    background-color: white;
    margin: auto;
    position: relative;
    width: 90%;
    max-height: 90%;
    padding: 72px 20px 20px 20px;
    overflow-x: hidden;
    overflow-y: auto;
  }
}
.downloads {
  margin: 48px 0 0 0;
}
.downloads:first-of-type {
  margin-top: 0;
}
.downloads ul {
  margin: 0;
  padding: 24px 0 0 0;
}
.downloads ul li {
  margin: 8px 0 0 0;
  padding: 22px 70px 22px 22px;
  background-color: #E8E9E8;
  list-style: none;
  position: relative;
}
.downloads ul li:before {
  display: none;
  visibility: hidden;
}
.downloads ul li a {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
}
.downloads ul li a::after {
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-family: "Font Awesome 6 Pro";
  text-decoration: none;
  text-align: center;
  background-color: var(--green);
  color: var(--white);
  display: block;
  content: "\f33d";
  position: absolute;
}
.downloads ul li a:hover::after {
  background-color: var(--black);
}
.downloads ul li p {
  padding: 8px 0 0 0;
  font-family: "Nunito Sans";
}
.downloads ul li p.h5 {
  padding: 0;
}
.downloads ul li p.subtitle {
  padding: 0;
  font-family: "Nunito Sans";
  font-weight: 900;
  color: #384E46;
}

.animation-block {
  margin: 32px 0 48px 0;
  position: relative;
}
.animation-block.green {
  background-color: var(--green);
  color: var(--white);
}
.animation-block.green h1, .animation-block.green h2, .animation-block.green h3, .animation-block.green h4, .animation-block.green h5, .animation-block.green h6, .animation-block.green p {
  color: var(--white);
}
.animation-block .logo-dinkelsteen {
  top: 40px;
  left: 40px;
  right: 40px;
  position: absolute;
  display: block;
  z-index: 1;
}
.animation-block .logo-dinkelsteen img {
  width: auto;
  max-width: 100%;
  max-height: 24px;
  display: block;
}
@media (max-width: 576px) {
  .animation-block.white .placeholder-content {
    width: 100% !important;
    margin: 0 !important;
  }
}
.animation-block .block-placeholder .placeholder-animation {
  width: 100%;
}
.animation-block .block-placeholder .placeholder-animation video,
.animation-block .block-placeholder .placeholder-animation img {
  width: 100%;
  height: auto;
  display: block;
}
.animation-block .block-placeholder .placeholder-content {
  width: 66.6666666667%;
  margin: 0 16.6666666667%;
  padding: 54px 0 80px 0;
}
.animation-block .block-placeholder .placeholder-content .buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.animation-block .block-placeholder .placeholder-content .buttons p.button a span {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--green);
}
.animation-block .block-placeholder .placeholder-content .buttons p.button a:hover span {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.animation-block .block-placeholder .placeholder-content .buttons p.button.alternative a span {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
.animation-block .block-placeholder .placeholder-content .buttons p.button.alternative a:hover span {
  background-color: var(--white);
  color: var(--green);
}

.highlighted-references {
  padding: 32px 0 26px 0;
}
.highlighted-references .references-placeholder {
  padding: 26px 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.highlighted-references .references-placeholder .card {
  margin: 0;
}

.card-grey {
  margin: 32px 0 0 0;
  padding: 48px;
  background-color: var(--green10);
}
.card-grey .placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-grey .placeholder .icon {
  width: 128px;
  height: 128px;
  margin: 0 auto;
  display: table;
}
.card-grey .placeholder .content {
  text-align: center;
}
.card-grey .placeholder .content p.h4 {
  color: var(--green);
}

/*	FAQ
*****************************/
.faq .faq-title {
  margin-bottom: 26px;
}
.faq .faq-items .faq-item {
  margin: 16px 0 0 0;
  padding: 26px;
  background-color: var(--green10);
}
.faq .faq-items .faq-item .faq-question .question-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq .faq-items .faq-item .faq-question .question-row h3 {
  padding-top: 0px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.333;
  text-transform: unset;
  margin: 0;
}
.faq .faq-items .faq-item .faq-question .question-row .faq-icon {
  top: 1px;
  position: relative;
}
.faq .faq-items .faq-item .faq-question .question-row .faq-icon::before {
  content: "\f077";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 18px;
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}
.faq .faq-items .faq-item .faq-question .question-row.active .faq-icon::before {
  transform: rotate(180deg);
}

.image {
  margin: 26px 0 0 0;
}

/*	SAMPLE
*****************************/
#sample-bubble {
  z-index: 1000;
}
#sample-bubble .sample-dimming {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  content: "";
  position: fixed;
  pointer-events: none;
  transition: all linear 250ms;
  z-index: -1;
  opacity: 0;
}
#sample-bubble .sample-dimming.visible {
  pointer-events: unset;
  display: block;
  z-index: 1;
  opacity: 1;
}
#sample-bubble .sample-bubble-wrapper {
  right: 10px;
  bottom: 10px;
  box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.25);
  position: fixed;
  z-index: 2;
}
#sample-bubble .sample-bubble-wrapper.visible {
  right: 50%;
  bottom: 50%;
  width: 480px;
  max-width: 90%;
  transform: translate(50%, 50%);
  opacity: 1;
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-toggle span {
  line-height: 26px;
  padding: 12px 20px;
  background-color: #000000;
  color: #FFFFFF;
  display: block;
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-toggle span.opener {
  cursor: pointer;
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-toggle span.opener span {
  padding: 0;
  display: inline-block;
  background-color: transparent;
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-toggle span.opener:hover {
  background-color: #384e46;
  border-color: #FFFFFF;
  color: #FFFFFF;
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-toggle span i {
  top: 12px;
  right: 20px;
  width: 26px;
  height: 26px;
  line-height: 22px;
  text-align: center;
  border: 2px solid #FFFFFF;
  position: absolute;
  cursor: pointer;
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-toggle span i:hover {
  background-color: #FFFFFF;
  color: #000000;
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-body {
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-body ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--green10);
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-body ul li {
  margin: 0;
  padding: 6px 0;
  border-bottom: 1px solid var(--green10);
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-body ul li:before {
  display: none;
  visibility: hidden;
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-body ul li i {
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
  opacity: 0.25;
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-body ul li i:hover {
  opacity: 1;
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-body .buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-body .buttons a.button {
  text-decoration: none;
  display: inline-block;
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-body .buttons a.button span {
  background-color: var(--green);
  border: 2px solid var(--green);
  padding: 5px 10px;
  font-weight: 600;
  color: var(--white);
  display: block;
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-body .buttons a.button:hover span {
  background-color: transparent;
  color: var(--green);
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-body .buttons a.button.alternative span {
  background-color: var(--black);
  border-color: var(--black);
}
#sample-bubble .sample-bubble-wrapper .sample-bubble-body .buttons a.button.alternative:hover span {
  background-color: transparent;
  color: var(--black);
}

#sample-request-form .stones {
  margin: 26px 0 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(auto, 1fr));
  gap: 40px;
}
@media (max-width: 576px) {
  #sample-request-form .stones {
    grid-template-columns: 100%;
  }
}
@media (min-width: 577px) and (max-width: 820px) {
  #sample-request-form .stones {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
}
@media (min-width: 821px) and (max-width: 1180px) {
  #sample-request-form .stones {
    grid-template-columns: repeat(3, minmax(auto, 1fr));
  }
}
#sample-request-form .stones .stone {
  position: relative;
}
#sample-request-form .stones .stone .image {
  width: 100%;
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
}
#sample-request-form .stones .stone .image img {
  width: 100%;
}
#sample-request-form .stones .stone .image i {
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  line-height: 48px;
  background-color: var(--green);
  text-align: center;
  display: block;
  color: var(--white);
  cursor: pointer;
  position: absolute;
}
#sample-request-form .stones .stone .image i:hover {
  background-color: var(--black);
}
#sample-request-form .stones .stone .data {
  margin: -48px 22px 0 22px;
  padding: 0 22px 26px 22px;
  background-color: #FFFFFF;
  position: relative;
  z-index: 2;
}
#sample-request-form .stones .stone .data p.title {
  font-family: "Nunito Sans";
  font-weight: bold;
  text-transform: uppercase;
  word-break: break-word;
}
#sample-request-form .stones .stone .data select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin: 0;
  padding: 0 0 0 24px;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 0;
  background-position-y: 0;
  border: 0;
  line-height: 26px;
  font-family: "Nunito";
  font-size: 16px;
  color: var(--black);
  text-align: unset;
  text-indent: unset;
}
#sample-request-form .stones .stone .data span.field-validation-error {
  margin-top: 8px;
  color: #ff3131;
  display: block;
}
#sample-request-form .form {
  margin: 26px 0 0 0;
  padding: 48px;
  background-color: var(--green10);
}
#sample-request-form .form button[type=submit] {
  margin: 26px 0 0 0;
}

#sample-request-result ul li a {
  text-decoration: none;
  color: var(--black);
}
#sample-request-result ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  #sample-bubble {
    z-index: 1000;
  }
  #sample-bubble .sample-bubble-wrapper.visible {
    max-width: 90%;
    width: 100%;
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
  }
  #sample-bubble .sample-bubble-wrapper .sample-bubble-body .buttons {
    flex-direction: column;
    gap: 10px;
  }
}
